-
Notifications
You must be signed in to change notification settings - Fork 0
Troubleshooting
Cause: The notebook is running on CPU-only runtime.
Fix:
- Click Runtime in the top menu
- Select Change runtime type
- Under Hardware accelerator, select T4 GPU
- Click Save
- Wait for the runtime to restart, then re-run the installation cell
Cause: Dependencies not installed or runtime restarted.
Fix: Re-run the installation cell:
!pip install -q -r /content/vsep/requirements.txtCause: The model is too large for available GPU memory (T4 has 16GB).
Fixes (try in order):
-
Use a smaller model — MDX models (
.onnx) are smaller than Roformer models (.ckpt) -
Enable chunking — Add
chunk_duration=300to the Separator call - Use Colab Pro with an A100 (40GB) for the largest models
Cause: Slow internet or model repository rate limiting.
Fixes:
- Re-run — downloads resume automatically (partial files are kept)
- Check internet — make sure you have internet access in Colab
- Try a different model — some are hosted on different servers
-
Reduce parallel workers — set
cfg.MAX_DOWNLOAD_WORKERS = 2
Cause: The display name doesn't match any model in the catalog.
Fix:
- Run the Browse Models cell to see the exact display names
- Copy the display name exactly (case-sensitive)
- Or use the model filename directly (e.g.,
model_bs_roformer_ep_317_sdr_12.9755.ckpt)
Cause: This was a bug in an older version of vsep. Should be fixed in the latest version.
Fix: Pull the latest version:
!cd /content/vsep && git pullCause: Code is trying to import audio_separator as a pip package instead of using local paths.
Fix: This was fixed in the latest version. Pull the latest:
!cd /content/vsep && git pullCause: Running models on CPU is 5-10x slower than GPU.
Fix:
- Enable GPU runtime (see above)
- Use a smaller model (MDX-Net instead of Roformer)
- Reduce audio length or enable chunking
Cause: The model file exists but its parameters aren't in model-data.json.
Fix:
- Try running
python utils/cli.py --download_model_only <model_filename>to force download metadata - If still failing, the model may not be compatible
Possible fixes:
- Try a different model — some handle specific genres better
- Increase overlap for MDXC models:
mdxc_params={"overlap": 16} - Try ensemble mode with multiple models
- Post-process with de-reverb/de-echo models
Cause: Colab sessions time out after ~90 minutes of inactivity.
Fix:
- Keep the browser tab active
- Reconnecting restores the session but may lose variables — re-run from the Browse Models cell
- Models are re-downloaded quickly (cached on first download)
If you encounter an issue not listed here:
- Check existing issues: github.com/BF667-IDLE/vsep/issues
- Open a new issue: Include your OS, Colab specs, model name, audio format, and the full error traceback
- GitHub Discussions: Ask the community for advice