Spaces:
Running on Zero
Running on Zero
Update requirements.txt
#4
by HammerHeadDown - opened
- requirements.txt +17 -47
requirements.txt
CHANGED
|
@@ -1,47 +1,17 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
transformers==4.38.2 # Transformers
|
| 19 |
-
torchvision==0.19.0 # Torchvision
|
| 20 |
-
tiktoken==0.7.0 # Tiktoken for generation
|
| 21 |
-
transformers_stream_generator==0.0.5 #LLM generation support
|
| 22 |
-
|
| 23 |
-
# Metrics
|
| 24 |
-
torchmetrics==1.3.2 # Core module for metric
|
| 25 |
-
pycocotools==2.0.7 # COCO-related
|
| 26 |
-
torch-fidelity==0.3.0 # FID-related
|
| 27 |
-
|
| 28 |
-
# Experiment Tracking
|
| 29 |
-
moviepy==1.0.3 # WandB Logging Image & Video
|
| 30 |
-
imageio==2.34.0 # WandB Logging Image & Video
|
| 31 |
-
tabulate==0.9.0 # Logging Table
|
| 32 |
-
deepdiff==7.0.1 # Find difference of config
|
| 33 |
-
|
| 34 |
-
# Testing
|
| 35 |
-
parameterized==0.9.0 # Define multiple tests through decorators.
|
| 36 |
-
|
| 37 |
-
# Notebook
|
| 38 |
-
mediapy==1.2.0 # Notebook Visualization
|
| 39 |
-
|
| 40 |
-
# DevOPs
|
| 41 |
-
black >= 24, < 25 # Code formatting
|
| 42 |
-
flake8 >= 7, < 8 # Code style
|
| 43 |
-
isort >= 5, < 6 # Import sorting
|
| 44 |
-
pre-commit==3.7.0 # Pre-commit hooks
|
| 45 |
-
expecttest==0.2.1 # Pytorch dist tests
|
| 46 |
-
hypothesis==6.100.1 # Fix randomness
|
| 47 |
-
av==12.0.0 # Process audio and video
|
|
|
|
| 1 |
+
--extra-index-url https://download.pytorch.org/whl/cu128
|
| 2 |
+
torch==2.8.0
|
| 3 |
+
torchvision==0.23.0
|
| 4 |
+
safetensors
|
| 5 |
+
numpy
|
| 6 |
+
tqdm
|
| 7 |
+
psutil
|
| 8 |
+
einops
|
| 9 |
+
omegaconf>=2.3.0
|
| 10 |
+
diffusers>=0.33.1
|
| 11 |
+
peft>=0.17.0
|
| 12 |
+
rotary_embedding_torch>=0.5.3
|
| 13 |
+
opencv-python-headless
|
| 14 |
+
gguf
|
| 15 |
+
matplotlib
|
| 16 |
+
mediapy
|
| 17 |
+
huggingface_hub
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|