Spaces:
Sleeping
Sleeping
feat: update requirements.txt to include CLAP and FST dependencies
Browse files- requirements.txt +8 -0
requirements.txt
CHANGED
|
@@ -24,16 +24,24 @@ soundfile>=0.12.1
|
|
| 24 |
audioread>=3.0.1
|
| 25 |
resampy>=0.4.2
|
| 26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 27 |
# === Data Processing ===
|
| 28 |
numpy>=1.26.3
|
| 29 |
pandas>=2.1.4
|
| 30 |
scipy>=1.11.4
|
|
|
|
| 31 |
|
| 32 |
# === API & Web ===
|
| 33 |
aiohttp>=3.9.1
|
| 34 |
httpx>=0.26.0
|
| 35 |
requests>=2.31.0
|
| 36 |
|
|
|
|
|
|
|
|
|
|
| 37 |
# === Utilities ===
|
| 38 |
python-dotenv>=1.0.0
|
| 39 |
pyyaml>=6.0.1
|
|
|
|
| 24 |
audioread>=3.0.1
|
| 25 |
resampy>=0.4.2
|
| 26 |
|
| 27 |
+
# === CLAP Embeddings (Layer 2 - optional, CPU) ===
|
| 28 |
+
# laion-clap requires torch; install torch CPU first
|
| 29 |
+
laion-clap>=1.1.4
|
| 30 |
+
|
| 31 |
# === Data Processing ===
|
| 32 |
numpy>=1.26.3
|
| 33 |
pandas>=2.1.4
|
| 34 |
scipy>=1.11.4
|
| 35 |
+
scikit-learn>=1.3.2
|
| 36 |
|
| 37 |
# === API & Web ===
|
| 38 |
aiohttp>=3.9.1
|
| 39 |
httpx>=0.26.0
|
| 40 |
requests>=2.31.0
|
| 41 |
|
| 42 |
+
# === Gradio Client (FST Layer 3 - external API) ===
|
| 43 |
+
gradio_client>=1.0.0
|
| 44 |
+
|
| 45 |
# === Utilities ===
|
| 46 |
python-dotenv>=1.0.0
|
| 47 |
pyyaml>=6.0.1
|