Spaces:
Configuration error
Configuration error
New requirements
Browse files- requirements.txt +41 -20
requirements.txt
CHANGED
|
@@ -1,23 +1,44 @@
|
|
| 1 |
# TRIBE v2 — HuggingFace Spaces requirements
|
| 2 |
#
|
| 3 |
-
#
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
tribev2[plotting] @ git+https://github.com/facebookresearch/tribev2.git
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
# Ensure headless matplotlib backend works
|
| 13 |
-
matplotlib>=3.8.0
|
| 14 |
-
|
| 15 |
-
# huggingface_hub for HF_TOKEN login helper
|
| 16 |
-
huggingface_hub>=0.23.0
|
| 17 |
-
|
| 18 |
-
# tribev2 uses `uvx` internally to run WhisperX (audio transcription).
|
| 19 |
-
# Installing uv via pip makes the `uvx` binary available in PATH.
|
| 20 |
-
uv>=0.4.0
|
| 21 |
-
|
| 22 |
-
# 3D brain visualization
|
| 23 |
-
plotly>=5.18.0
|
|
|
|
| 1 |
# TRIBE v2 — HuggingFace Spaces requirements
|
| 2 |
#
|
| 3 |
+
# Core TRIBE v2 dependencies
|
| 4 |
+
neuralset==0.0.2
|
| 5 |
+
neuraltrain==0.0.2
|
| 6 |
+
torch>=2.5.1,<2.7
|
| 7 |
+
numpy==2.2.6
|
| 8 |
+
torchvision>=0.20,<0.22
|
| 9 |
+
x_transformers==1.27.20
|
| 10 |
+
einops
|
| 11 |
+
pyyaml
|
| 12 |
+
moviepy>=2.2.1
|
| 13 |
+
huggingface_hub
|
| 14 |
+
spaces
|
| 15 |
+
gtts
|
| 16 |
+
langdetect
|
| 17 |
+
spacy
|
| 18 |
+
soundfile
|
| 19 |
+
Levenshtein
|
| 20 |
+
uv
|
| 21 |
+
fpdf2>=2.8.2
|
| 22 |
+
|
| 23 |
+
# Plotting & brain rendering
|
| 24 |
+
matplotlib>=3.10
|
| 25 |
+
nibabel>=5.4
|
| 26 |
+
nilearn>=0.13
|
| 27 |
+
scipy>=1.17
|
| 28 |
+
pydantic>=2.12
|
| 29 |
+
colorcet
|
| 30 |
+
seaborn
|
| 31 |
+
|
| 32 |
+
# UI
|
| 33 |
+
gradio>=5.0
|
| 34 |
+
|
| 35 |
+
# Analysis
|
| 36 |
+
requests
|
| 37 |
+
tqdm
|
| 38 |
+
transformers
|
| 39 |
+
julius
|
| 40 |
+
|
| 41 |
tribev2[plotting] @ git+https://github.com/facebookresearch/tribev2.git
|
| 42 |
+
spaces
|
| 43 |
+
huggingface_hub
|
| 44 |
+
torch==2.6.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|