fffiloni commited on
Commit
9be1d83
·
verified ·
1 Parent(s): 6a8fc54

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +41 -25
requirements.txt CHANGED
@@ -1,42 +1,58 @@
1
- torch==2.5.1 torchvision==0.20.1 torchaudio==2.5.1 xformers==0.0.28.post3 --index-url https://download.pytorch.org/whl/cu124
 
 
 
 
2
  torchao --index-url https://download.pytorch.org/whl/nightly/cu124
3
- --no-deps facenet_pytorch==2.6.0
 
 
4
  mediapipe
 
 
5
  transformers>=4.46.3
6
  diffusers==0.31.0
7
  torchmetrics
8
  torchtyping
9
- tqdm
10
- einops==0.8.0
11
- omegaconf==2.3.0
12
- opencv-python
13
- av==13.1.0
14
- gradio
15
  accelerate==1.1.1
16
- clip @ https://github.com/openai/CLIP/archive/d50d76daa670286dd6cacf3bcd80b5e4823fc8e1.zip#sha256=b5842c25da441d6c581b53a5c60e0c2127ebafe0f746f8e15561a006c6c3be6a
17
- decord==0.6.0
18
- diffusers==0.31.0
19
- einops==0.8.0
20
- gradio_client==1.4.3
21
  imageio==2.36.0
22
  imageio-ffmpeg==0.5.1
 
 
 
 
 
 
23
  numpy==1.26.4
24
- onnxruntime-gpu==1.20.1
25
- open-clip-torch==2.29.0
26
- opencv-contrib-python==4.10.0.84
27
- Pillow>=10.4.0
28
  scikit-image==0.24.0
29
  scikit-learn==1.5.2
30
  scipy==1.14.1
31
- torchdiffeq==0.2.5
32
- torchsde==0.2.6
 
 
 
 
 
 
33
  mlflow==2.18.0
34
  controlnet-aux==0.0.9
35
- ffmpeg-python
36
- soundfile
37
- mediapipe
38
- decord
39
  IPython
40
- scenedetect
41
- moviepy==1.0.3
42
  huggingface_hub==0.26.2
 
 
 
 
 
 
 
 
 
 
 
1
+ # Torch and related libraries
2
+ torch==2.5.1+cu124
3
+ torchvision==0.20.1+cu124
4
+ torchaudio==2.5.1+cu124
5
+ xformers==0.0.28.post3 --index-url https://download.pytorch.org/whl/cu124
6
  torchao --index-url https://download.pytorch.org/whl/nightly/cu124
7
+
8
+ # Facenet and media processing
9
+ facenet_pytorch==2.6.0
10
  mediapipe
11
+
12
+ # Transformers, diffusers, and machine learning
13
  transformers>=4.46.3
14
  diffusers==0.31.0
15
  torchmetrics
16
  torchtyping
 
 
 
 
 
 
17
  accelerate==1.1.1
18
+
19
+ # Image and video processing
20
+ opencv-python
21
+ opencv-contrib-python==4.10.0.84
22
+ Pillow>=10.4.0
23
  imageio==2.36.0
24
  imageio-ffmpeg==0.5.1
25
+ av==13.1.0
26
+ decord==0.6.0
27
+ moviepy==1.0.3
28
+ scenedetect
29
+
30
+ # NumPy, SciPy, and related libraries
31
  numpy==1.26.4
 
 
 
 
32
  scikit-image==0.24.0
33
  scikit-learn==1.5.2
34
  scipy==1.14.1
35
+
36
+ # Audio processing
37
+ soundfile
38
+ ffmpeg-python
39
+
40
+ # Miscellaneous libraries
41
+ einops==0.8.0
42
+ omegaconf==2.3.0
43
  mlflow==2.18.0
44
  controlnet-aux==0.0.9
 
 
 
 
45
  IPython
46
+ gradio
47
+ gradio_client==1.4.3
48
  huggingface_hub==0.26.2
49
+ torchdiffeq==0.2.5
50
+ torchsde==0.2.6
51
+ open-clip-torch==2.29.0
52
+
53
+ # CLIP library from GitHub
54
+ clip @ https://github.com/openai/CLIP/archive/d50d76daa670286dd6cacf3bcd80b5e4823fc8e1.zip#sha256=b5842c25da441d6c581b53a5c60e0c2127ebafe0f746f8e15561a006c6c3be6a
55
+
56
+ # ONNX Runtime for GPU
57
+ onnxruntime-gpu==1.20.1
58
+