上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 49 下一页
摘要: 坑1 huggingface_hub连不上,可以用hf-mirror先把模型下载下来。具体可以参考我的上一篇文章 https://www.cnblogs.com/qcy-blog/p/18165717 下载 M4869/WavMark,在【xxx\Lib\site-packages\wavmark_ 阅读全文
posted @ 2024-05-05 17:06 朝阳1 阅读(292) 评论(0) 推荐(0)
摘要: git地址 https://github.com/myshell-ai/OpenVoice 安装 conda create -n openvoice python=3.9 conda activate openvoice git clone git@github.com:myshell-ai/Ope 阅读全文
posted @ 2024-05-05 15:25 朝阳1 阅读(361) 评论(0) 推荐(0)
摘要: 官方demo https://github.com/lyogavin/Anima/blob/main/air_llm/examples/run_all_types_of_models.ipynb 这里使用百川本地 from airllm import AirLLMLlama2,AutoModel M 阅读全文
posted @ 2024-04-30 17:01 朝阳1 阅读(378) 评论(0) 推荐(0)
摘要: 切换到 postgres 用户:默认情况下,以 postgres 用户身份登录可以获得数据库的完全访问权限: sudo su - postgres 登录到 PostgreSQL: psql 系统会提示您输入之前设置的 postgres 用户的密码。 登录后,您可以创建新的数据库和用户,或者执行其他数 阅读全文
posted @ 2024-04-30 13:47 朝阳1 阅读(75) 评论(0) 推荐(0)
摘要: 把ip加入黑名单 iptables -A INPUT -s 1.192.82.38 -j DROP 怎么回退这个命令? 但是要是误添加就很恶心了 要回退(即删除或撤销)使用 iptables 添加的特定规则,您需要知道该规则的序号。您可以使用带有 --line-number 选项的 iptables 阅读全文
posted @ 2024-04-30 10:11 朝阳1 阅读(67) 评论(0) 推荐(0)
摘要: 参考 https://www.cnblogs.com/scarecrow-blog/p/17875127.html 模型下载之前说过一次 https://www.cnblogs.com/qcy-blog/p/18165717 也可直接去官网,把所有文件都点一遍 from langchain impo 阅读全文
posted @ 2024-04-29 16:52 朝阳1 阅读(1502) 评论(0) 推荐(0)
摘要: 官网 https://github.com/RVC-Boss/GPT-SoVITS/blob/main/docs/cn/README.md 可以下载打包好的文件,也可自己安装 阅读全文
posted @ 2024-04-29 16:35 朝阳1 阅读(487) 评论(0) 推荐(0)
摘要: hf-mirror.com的包如何下载 pip install -U huggingface_hub 设置环境变量以使用镜像站: export HF_ENDPOINT=https://hf-mirror.com export HF_HOME = "usr/local/" 对于 Windows Pow 阅读全文
posted @ 2024-04-29 14:58 朝阳1 阅读(3963) 评论(0) 推荐(0)
摘要: package main import ( "fmt" "io" "os" "regexp" "strconv" "sync" "github.com/qianlnk/pgbar" ) /** * 需求: 1. 多协程下载文件 2.断点续连 **/ func main() { //获取要下载文件 D 阅读全文
posted @ 2024-04-28 16:57 朝阳1 阅读(134) 评论(0) 推荐(0)
摘要: 简单做个笔记 register package main import ( "os" "log" "time" "syscall" "context" "os/signal" "go.etcd.io/etcd/clientv3" ) //ServiceRegister 创建租约注册服务 type S 阅读全文
posted @ 2024-04-28 16:53 朝阳1 阅读(231) 评论(0) 推荐(0)
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 49 下一页