prithivMLmods commited on
Commit
9cc968a
·
verified ·
1 Parent(s): dd72372

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +141 -28
requirements.txt CHANGED
@@ -1,30 +1,143 @@
1
- # --- Core Dependencies ---
2
- torch
3
- torchvision
4
- accelerate==1.1.1
5
- diffusers==0.30.0
 
6
 
7
- einops==0.8.1
8
- #flash_attn==2.8.3
9
- huggingface_hub==0.36.0
10
- imageio==2.36.0
11
- jaxtyping==0.3.4
12
- numpy
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  omegaconf==2.3.0
14
- Pillow==12.0.0
15
- pymeshlab
16
- safetensors==0.7.0
17
- sageattention==1.0.6
18
- rembg
19
- tqdm==4.66.5
20
- transformers==4.37.2
21
- trimesh==4.4.7
22
-
23
- # --- Gradio & HF Spaces ---
24
- gradio
25
- spaces
26
-
27
- # --- External Packages (from git) ---
28
- # cubvh is installed dynamically in app.py to avoid build isolation issues.
29
-
30
- flash-attn @ https://huggingface.co/strangertoolshf/flash_attention_2_wheelhouse/resolve/main/wheelhouse-flash_attn-2.8.3/linux_x86_64/torch2.5/cu12/abiFALSE/cp312/flash_attn-2.8.3+cu12torch2.5cxx11abiFALSE-cp312-cp312-linux_x86_64.whl
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Lyra 2 Requirements
2
+ # Python 3.10+
3
+ #
4
+ # Install with: pip install --no-deps -r requirements.txt
5
+ # MoGe must be installed separately (needs its own deps):
6
+ # pip install "git+https://github.com/microsoft/MoGe.git"
7
 
8
+ # Core ML/DL frameworks
9
+ accelerate==1.8.1
10
+ diffusers==0.35.2
11
+ peft==0.17.1
12
+ megatron-core==0.12.1
13
+ transformers==4.57.1
14
+ ninja
15
+
16
+ # Data processing
17
+ numpy>=2.0
18
+ pandas==2.2.3
19
+ pillow==11.1.0
20
+ opencv-python==4.11.0.86
21
+ opencv-python-headless==4.11.0.86
22
+ scikit-image==0.25.2
23
+ scipy==1.15.3
24
+
25
+ # Video/Media processing
26
+ av==15.0.0
27
+ decord==0.6.0
28
+ imageio[pyav,ffmpeg]==2.37.0
29
+ imageio-ffmpeg==0.6.0
30
+ tifffile==2025.5.10
31
+ ffmpegcv
32
+
33
+ # Configuration/Hydra
34
+ hydra-core==1.3.2
35
  omegaconf==2.3.0
36
+ pyyaml==6.0.2
37
+
38
+ # Tokenizers and text processing
39
+ sentencepiece==0.2.0
40
+ tiktoken==0.9.0
41
+ tokenizers==0.22
42
+ ftfy==6.3.1
43
+ regex==2024.11.6
44
+
45
+ # Data loading and storage
46
+ webdataset==0.2.111
47
+ zarr==2.18.3
48
+ tensorstore==0.1.45
49
+ numcodecs==0.13.1
50
+
51
+ # AWS/S3 support
52
+ boto3==1.38.31
53
+ botocore==1.38.46
54
+ s3transfer==0.13.1
55
+ fsspec==2025.5.1
56
+
57
+ # Model storage and optimization
58
+ safetensors==0.5.3
59
+
60
+ # Utilities
61
+ einops==0.8.1
62
+ attrs==25.3.0
63
+ attr==0.3.2
64
+ tyro==0.9.32
65
+ tqdm==4.67.1
66
+ psutil==7.0.0
67
+ loguru==0.7.3
68
+ rich==14.0.0
69
+ matplotlib==3.10.7
70
+
71
+ # Infrastructure
72
+ fvcore==0.1.5.post20221221
73
+ iopath==0.1.10
74
+ huggingface-hub==0.35.3
75
+
76
+ # Inference extras (moved from INSTALL.md step 7)
77
+ pyquaternion
78
+ lru-dict
79
+ OpenEXR==3.2.3
80
+ jaxtyping
81
+ portalocker
82
+ tabulate
83
+ termcolor
84
+ braceexpand
85
+ fasteners
86
+ lazy-loader>=0.4
87
+ hatchling
88
+ hatch-vcs>=0.4
89
+ editables
90
+
91
+ # Testing
92
+ coverage==7.9.2
93
+ pytest==8.4.1
94
+ pytest-cov==6.2.1
95
+ pytest-mock==3.14.1
96
+ pytest-random-order==1.2.0
97
+ pytest-xdist==3.8.0
98
+ ipdb==0.13.13
99
+ ipython==8.37.0
100
+
101
+ # Standard dependencies (required by other packages)
102
+ annotated-types==0.7.0
103
+ asttokens==3.0.0
104
+ certifi==2025.7.9
105
+ charset-normalizer==3.4.2
106
+ decorator==5.2.1
107
+ executing==2.2.0
108
+ filelock==3.28.0
109
+ idna==3.10
110
+ importlib-metadata==8.7.0
111
+ jedi==0.19.2
112
+ jinja2==3.1.6
113
+ jmespath==1.0.1
114
+ markupsafe==3.0.2
115
+ ninja==1.11.1.4
116
+ nvidia-ml-py==12.535.133
117
+ orjson==3.11.3
118
+ parso==0.8.4
119
+ pexpect==4.9.0
120
+ platformdirs==4.3.8
121
+ prompt-toolkit==3.0.51
122
+ protobuf==4.25.3
123
+ ptyprocess==0.7.0
124
+ pure-eval==0.2.3
125
+ pydantic==2.11.7
126
+ pydantic-core==2.33.2
127
+ pygments==2.19.2
128
+ pynvml==12.0.0
129
+ pyparsing==3.2.3
130
+ python-dateutil==2.9.0.post0
131
+ pytz==2025.2
132
+ requests==2.32.4
133
+ setuptools==80.9.0
134
+ six==1.17.0
135
+ stack-data==0.6.3
136
+ tomli==2.2.1
137
+ tomlkit==0.13.3
138
+ traitlets==5.14.3
139
+ typing-extensions==4.14.1
140
+ tzdata==2025.2
141
+ urllib3==2.5.0
142
+ wrapt==1.17.2
143
+ zipp==3.23.0