euiia commited on
Commit
07bd592
·
verified ·
1 Parent(s): a689392

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +33 -1
requirements.txt CHANGED
@@ -26,6 +26,11 @@ pydantic
26
  soundfile
27
  SeedVR2Pipeline
28
 
 
 
 
 
 
29
  # --- Data Handling & I/O ---
30
  Pillow
31
  numpy
@@ -40,4 +45,31 @@ av
40
  # --- Hugging Face Hub ---
41
  huggingface_hub
42
 
43
- google-generativeai
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  soundfile
27
  SeedVR2Pipeline
28
 
29
+ tiktoken
30
+ transformers_stream_generator
31
+
32
+ rotary-embedding-torch
33
+
34
  # --- Data Handling & I/O ---
35
  Pillow
36
  numpy
 
45
  # --- Hugging Face Hub ---
46
  huggingface_hub
47
 
48
+ google-generativeai
49
+
50
+
51
+ # Metrics
52
+ torchmetrics==1.3.2 # Core module for metric
53
+ pycocotools==2.0.7 # COCO-related
54
+ torch-fidelity==0.3.0 # FID-related
55
+
56
+ # Experiment Tracking
57
+ moviepy==1.0.3 # WandB Logging Image & Video
58
+ imageio==2.34.0 # WandB Logging Image & Video
59
+ tabulate==0.9.0 # Logging Table
60
+ deepdiff==7.0.1 # Find difference of config
61
+
62
+ # Testing
63
+ parameterized==0.9.0 # Define multiple tests through decorators.
64
+
65
+ # Notebook
66
+ mediapy==1.2.0 # Notebook Visualization
67
+
68
+ # DevOPs
69
+ black >= 24, < 25 # Code formatting
70
+ flake8 >= 7, < 8 # Code style
71
+ isort >= 5, < 6 # Import sorting
72
+ pre-commit==3.7.0 # Pre-commit hooks
73
+ expecttest==0.2.1 # Pytorch dist tests
74
+ hypothesis==6.100.1 # Fix randomness
75
+ av==12.0.0