You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running convert_batch.py throws ValueError: Cannot find f2114342ff9e813e18a580fa41418aee9925414e in https://github.com/s3prl/s3prl that originates from
File "convert_batch.py", line 61, in mainsrc_feat_model = FeatureExtractor(src_feat_name, wav2vec_path, device)File "/deepmind/experiments/howard1337/s2vc/data/feature_extract.py", line 18, in __init__torch.hub.load("s3prl/s3prl:f2114342ff9e813e18a580fa41418aee9925414e", feature_name, refresh=True).eval().to(device)File "/storage/usr/conda/envs/s2vc/lib/python3.8/site-packages/torch/hub.py", line 402, in loadrepo_or_dir = _get_cache_or_reload(repo_or_dir, force_reload, verbose, skip_validation)File "/storage/usr/conda/envs/s2vc/lib/python3.8/site-packages/torch/hub.py", line 190, in _get_cache_or_reload_validate_not_a_forked_repo(repo_owner, repo_name, branch)File "/storage/usr/conda/envs/s2vc/lib/python3.8/site-packages/torch/hub.py", line 160, in _validate_not_a_forked_reporaise ValueError(f'Cannot find {branch} in https://github.com/{repo_owner}/{repo_name}. 'ValueError: Cannot find f2114342ff9e813e18a580fa41418aee9925414e in https://github.com/s3prl/s3prl. If it's a commit from a forked repo, please call hub.load() with forked repo directly.
Any idea on how to solve this?
The text was updated successfully, but these errors were encountered:
Hi everyone. I figure this problem out and here are some notes.
replace the 'cpc' line13 in feature_extract.py to 'modified_cpc' which has changed name in s3prl.
replace 's3prl/s3prl:f2114342ff9e813e18a580fa41418aee9925414e ' by 's3prl/s3prl:v0.3.4'.
replace _LinearWithBias with NonDynamicallyQuantizableLinear if you have torch >=1.8
after those finished, you can reproduce the result in that paper.
However, I used an off-the-shelf spk encoder called Wespeaker, and the EER doesn't seem good, I compare the vector with both reference and source, and the prob of misclassification is larger than 10%.Also, the WER result by Wenet is only 27%, pretty different from the results by s3prl.
Running convert_batch.py throws
ValueError: Cannot find f2114342ff9e813e18a580fa41418aee9925414e in https://github.com/s3prl/s3prl
that originates fromS2VC/data/feature_extract.py
Line 18 in 8a6dceb
Any idea on how to solve this?
The text was updated successfully, but these errors were encountered: