Open Subarasheese opened 1 year ago
@Subarasheese could you please pull latest changes from main
branch and re-install the package?
git checkout main
git pull
pip install -U .
i'm getting this error during initial installation, which looks related:
ERROR: Could not find a version that satisfies the requirement fairseq2n==0.1.0 (from fairseq2) (from versions: none) ERROR: No matching distribution found for fairseq2n==0.1.0
Are you using a Linux system as opposed to macOS, Windows? fairseq2 currently has support only for Linux.
@Subarasheese could you please pull latest changes from
main
branch and re-install the package?git checkout main git pull pip install -U .
I just did that, same problem unfortunately. (ModuleNotFoundError: No module named 'fairseq2.models.unity')
Hey @Subarasheese Probably you need to purge the cache - also it's on us to update the lib version. Could you try
pip install --no-cache-dir .
or --force-reinstall option?
Hello, I am following the fine-tuning guide with the following command:
torchrun --rdzv-backend=c10d --rdzv-endpoint=localhost:0 --nnodes=1 --nproc-per-node=8 --no-python python finetune.py --mode SPEECH_TO_SPEECH --train_dataset ./m4t_dataset/train_manifest.json --eval_dataset ./m4t_dataset/validation_manifest.json --learning_rate 1e-6 --warmup_steps 100 --max_epochs 10 --patience 3 --model_name seamlessM4T_large --save_model_to ./m4t_dataset/checkpoint.pt
However, this happens:
Can someone tell me how to fix this? Thank you