Retrieval-based-Voice-Conve.../tools/cmd/train-index.py

44 lines
1.3 KiB
Python
Raw Normal View History

"""
2023-03-31 17:49:09 +08:00
格式直接cid为自带的index位aid放不下了通过字典来查反正就5w个
"""
2024-01-26 16:10:04 +08:00
2023-08-28 15:08:31 +08:00
import os
import logging
logger = logging.getLogger(__name__)
2023-08-28 15:08:31 +08:00
import faiss
import numpy as np
2023-03-31 17:49:09 +08:00
# ###########如果是原始特征要先写save
inp_root = r"E:\codes\py39\dataset\mi\2-co256"
npys = []
2023-03-31 17:49:09 +08:00
for name in sorted(list(os.listdir(inp_root))):
phone = np.load("%s/%s" % (inp_root, name))
2023-03-31 17:49:09 +08:00
npys.append(phone)
big_npy = np.concatenate(npys, 0)
logger.debug(big_npy.shape) # (6196072, 192)#fp32#4.43G
np.save("infer/big_src_feature_mi.npy", big_npy)
2023-03-31 17:49:09 +08:00
##################train+add
# big_npy=np.load("/bili-coeus/jupyter/jupyterhub-liujing04/vits_ch/inference_f0/big_src_feature_mi.npy")
logger.debug(big_npy.shape)
index = faiss.index_factory(256, "IVF512,Flat") # mi
logger.info("Training...")
index_ivf = faiss.extract_index_ivf(index) #
2023-03-31 17:49:09 +08:00
index_ivf.nprobe = 9
index.train(big_npy)
faiss.write_index(index, "infer/trained_IVF512_Flat_mi_baseline_src_feat.index")
logger.info("Adding...")
2023-03-31 17:49:09 +08:00
index.add(big_npy)
faiss.write_index(index, "infer/added_IVF512_Flat_mi_baseline_src_feat.index")
"""
2023-03-31 17:49:09 +08:00
大小都是FP32
big_src_feature 2.95G
(3098036, 256)
big_emb 4.43G
(6196072, 192)
big_emb双倍是因为求特征要repeat后再加pitch
"""