kvn420 commited on
Commit
a289b5e
·
verified ·
1 Parent(s): 8067fe5

Create Requirements.txt

Browse files
Files changed (1) hide show
  1. Requirements.txt +85 -0
Requirements.txt ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
8
+ transformers==4.36.0
9
+ datasets==2.14.0
10
+ huggingface_hub==0.19.0
11
+ accelerate==0.24.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
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
+ # Development & Testing
64
+ pytest==7.4.3
65
+ black==23.11.0
66
+ flake8==6.1.0
67
+
68
+ # Memory & Performance
69
+ psutil==5.9.6
70
+ memory-profiler==0.61.0
71
+
72
+ # Plotting & Visualization
73
+ matplotlib==3.8.2
74
+ seaborn==0.13.0
75
+ plotly==5.17.0
76
+
77
+ # File Format Support
78
+ openpyxl==3.1.2
79
+ xlsxwriter==3.1.9
80
+
81
+ # Additional Utilities
82
+ pathlib2==2.3.7
83
+ packaging==23.2
84
+ setuptools==69.0.2
85
+ wheel==0.42.0