1 Star 1 Fork 0

wellsfrog/so-vits-svc

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
export_index_for_onnx.py 411 Bytes
一键复制 编辑 原始数据 按行查看 历史
YuriHead 提交于 2023-07-23 23:55 . Updata export_index
import os
import pickle
import faiss
path = "crs"
indexs_file_path = f"checkpoints/{path}/feature_and_index.pkl"
indexs_out_dir = f"checkpoints/{path}/"
with open("feature_and_index.pkl",mode="rb") as f:
indexs = pickle.load(f)
for k in indexs:
print(f"Save {k} index")
faiss.write_index(
indexs[k],
os.path.join(indexs_out_dir,f"Index-{k}.index")
)
print("Saved all index")
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wellsfrog/so-vits-svc.git
git@gitee.com:wellsfrog/so-vits-svc.git
wellsfrog
so-vits-svc
so-vits-svc
4.1-Stable

搜索帮助