BF667-AI's picture
download
raw
851 Bytes
import os
from fairseq import checkpoint_utils
def get_index_path_from_model(sid):
return next(
(
f
for f in [
os.path.join(root, name)
for root, _, files in os.walk(os.getenv("index_root"), topdown=False)
for name in files
if name.endswith(".index") and "trained" not in name
]
if sid.split(".")[0] in f
),
"",
)
def load_hubert(config):
models, _, _ = checkpoint_utils.load_model_ensemble_and_task(
["assets/hubert/hubert_base.pt"],
suffix="",
)
hubert_model = models[0]
hubert_model = hubert_model.to(config.device)
if config.is_half:
hubert_model = hubert_model.half()
else:
hubert_model = hubert_model.float()
return hubert_model.eval()

Xet Storage Details

Size:
851 Bytes
·
Xet hash:
3f817818ad1feaaffdf2734cc84efc392bb5184073923248f107114810638951

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.