Dependency conflicts prevent running SAM-Audio on Google Colab
I'm trying to run SAM-Audio on Google Colab (Python 3.12, T4 GPU) following the README, but I hit a chain of dependency conflicts that I couldn't fully resolve.
Installing via pip install -e . from the cloned repo pulls dependencies (perception-models, imagebind, the CLAP fork) that downgrade huggingface_hub and numpy. This causes:
ImportError: cannot import name 'is_offline_mode' from 'huggingface_hub' β because transformers>=4.54 (required by your pyproject.toml) needs a newer huggingface_hub than what gets installed.
ImportError: cannot import name 'ModernBertConfig' from 'transformers' when pinning transformers too low.
ValueError: numpy.dtype size changed β binary incompatibility from laion-clap requiring numpy<2.0 while Colab ships numpy 2.x.
Could you publish the exact pinned versions of huggingface_hub, numpy and transformers that the example notebooks were tested with? A Colab-compatible install cell in the examples/ notebooks would help a lot.
Environment: Google Colab, Python 3.12, CUDA A100.