Update requirements.txt
Browse files- requirements.txt +16 -13
requirements.txt
CHANGED
@@ -1,23 +1,26 @@
|
|
1 |
# Interface utilisateur
|
2 |
-
gradio==5.5.0
|
3 |
|
4 |
# Core ML Framework
|
5 |
-
torch==2.1.2+cpu
|
6 |
--extra-index-url https://download.pytorch.org/whl/cpu
|
7 |
|
8 |
-
#
|
9 |
-
diffusers==0.
|
10 |
-
transformers==4.36.2
|
11 |
-
accelerate==0.26.1
|
12 |
-
safetensors==0.4.1
|
|
|
|
|
|
|
13 |
|
14 |
# Manipulation d'images
|
15 |
-
Pillow==10.2.0
|
16 |
|
17 |
-
#
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
|
22 |
-
# Optimisations
|
23 |
--find-links https://download.pytorch.org/whl/torch_stable.html
|
|
|
1 |
# Interface utilisateur
|
2 |
+
gradio==5.5.0
|
3 |
|
4 |
# Core ML Framework
|
5 |
+
torch==2.1.2+cpu
|
6 |
--extra-index-url https://download.pytorch.org/whl/cpu
|
7 |
|
8 |
+
# Gestion des modèles et génération d'images
|
9 |
+
diffusers==0.21.4 # Version spécifique pour la compatibilité
|
10 |
+
transformers==4.36.2
|
11 |
+
accelerate==0.26.1
|
12 |
+
safetensors==0.4.1
|
13 |
+
|
14 |
+
# Hugging Face Hub
|
15 |
+
huggingface-hub==0.19.4 # Version compatible avec diffusers
|
16 |
|
17 |
# Manipulation d'images
|
18 |
+
Pillow==10.2.0
|
19 |
|
20 |
+
# Utilitaires
|
21 |
+
requests>=2.31.0
|
22 |
+
python-dotenv>=1.0.0
|
23 |
+
tqdm>=4.66.1
|
24 |
|
25 |
+
# Optimisations de performance
|
26 |
--find-links https://download.pytorch.org/whl/torch_stable.html
|