Create Requirements.txt
Browse files- Requirements.txt +80 -0
Requirements.txt
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core ML Libraries
|
2 |
+
torch==2.1.0
|
3 |
+
torchvision==0.16.0
|
4 |
+
torchaudio==2.1.0
|
5 |
+
numpy==1.24.3
|
6 |
+
|
7 |
+
# Hugging Face Ecosystem - VERSIONS MISES À JOUR
|
8 |
+
transformers>=4.45.0
|
9 |
+
datasets==2.14.0
|
10 |
+
huggingface_hub>=0.20.0
|
11 |
+
accelerate>=0.25.0
|
12 |
+
tokenizers>=0.15.0
|
13 |
+
|
14 |
+
# UI Framework
|
15 |
+
gradio==4.8.0
|
16 |
+
|
17 |
+
# Image Processing
|
18 |
+
Pillow==10.1.0
|
19 |
+
opencv-python-headless==4.8.1.78
|
20 |
+
|
21 |
+
# Audio Processing
|
22 |
+
librosa==0.10.1
|
23 |
+
soundfile==0.12.1
|
24 |
+
resampy==0.4.2
|
25 |
+
audioread==3.0.1
|
26 |
+
|
27 |
+
# Video Processing
|
28 |
+
imageio==2.31.5
|
29 |
+
imageio-ffmpeg==0.4.9
|
30 |
+
|
31 |
+
# Data Processing
|
32 |
+
pandas==2.1.4
|
33 |
+
scikit-learn==1.3.2
|
34 |
+
scipy==1.11.4
|
35 |
+
|
36 |
+
# Optimization Libraries
|
37 |
+
bitsandbytes==0.41.3
|
38 |
+
einops==0.7.0
|
39 |
+
# flash-attn==2.3.6 # Commenté car peut causer des problèmes sur certains systèmes
|
40 |
+
|
41 |
+
# Networking & File Handling
|
42 |
+
requests==2.31.0
|
43 |
+
urllib3==2.1.0
|
44 |
+
aiohttp==3.9.1
|
45 |
+
|
46 |
+
# Progress & Logging
|
47 |
+
tqdm==4.66.1
|
48 |
+
rich==13.7.0
|
49 |
+
|
50 |
+
# Text Processing
|
51 |
+
regex==2023.10.3
|
52 |
+
sentencepiece==0.1.99
|
53 |
+
|
54 |
+
# Math & Statistics
|
55 |
+
sympy==1.12
|
56 |
+
statsmodels==0.14.1
|
57 |
+
|
58 |
+
# Configuration & Serialization
|
59 |
+
pyyaml==6.0.1
|
60 |
+
toml==0.10.2
|
61 |
+
jsonlines==4.0.0
|
62 |
+
|
63 |
+
# Memory & Performance
|
64 |
+
psutil==5.9.6
|
65 |
+
memory-profiler==0.61.0
|
66 |
+
|
67 |
+
# Plotting & Visualization
|
68 |
+
matplotlib==3.8.2
|
69 |
+
seaborn==0.13.0
|
70 |
+
plotly==5.17.0
|
71 |
+
|
72 |
+
# File Format Support
|
73 |
+
openpyxl==3.1.2
|
74 |
+
xlsxwriter==3.1.9
|
75 |
+
|
76 |
+
# Additional Utilities
|
77 |
+
pathlib2==2.3.7
|
78 |
+
packaging==23.2
|
79 |
+
setuptools==69.0.2
|
80 |
+
wheel==0.42.0
|