Spaces:
Sleeping
Sleeping
Create requirements.txt
Browse files- requirements.txt +53 -0
requirements.txt
ADDED
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Machine Learning and Deep Learning
|
2 |
+
tensorflow==2.13.0
|
3 |
+
torch==2.0.0
|
4 |
+
transformers==4.35.0
|
5 |
+
scikit-learn==1.3.0
|
6 |
+
xgboost==1.7.6
|
7 |
+
catboost==1.2
|
8 |
+
|
9 |
+
# Data Processing
|
10 |
+
pandas==2.1.0
|
11 |
+
numpy==1.25.0
|
12 |
+
scipy==1.11.0
|
13 |
+
|
14 |
+
# Natural Language Processing
|
15 |
+
nltk==3.8.1
|
16 |
+
spaCy==3.6.1
|
17 |
+
textblob==0.17.1
|
18 |
+
gensim==4.3.1
|
19 |
+
|
20 |
+
# Image and Video Processing
|
21 |
+
opencv-python==4.8.0
|
22 |
+
Pillow==9.4.0
|
23 |
+
moviepy==1.0.3
|
24 |
+
imageio==2.27.0
|
25 |
+
|
26 |
+
# Code Execution and Integration
|
27 |
+
jupyter==1.0.0
|
28 |
+
ipython==8.13.0
|
29 |
+
codegen==0.6.0
|
30 |
+
pygments==2.15.0
|
31 |
+
|
32 |
+
# Web and API Interaction
|
33 |
+
requests==2.31.0
|
34 |
+
flask==2.3.0
|
35 |
+
fastapi==0.104.0
|
36 |
+
pydantic==1.11.0
|
37 |
+
|
38 |
+
# Storage and Databases
|
39 |
+
sqlite==3.42.0
|
40 |
+
sqlalchemy==2.0.20
|
41 |
+
redis==4.6.0
|
42 |
+
boto3==1.26.0
|
43 |
+
|
44 |
+
# Security and Utilities
|
45 |
+
cryptography==39.0.2
|
46 |
+
pyyaml==6.0
|
47 |
+
dotenv==1.0.0
|
48 |
+
|
49 |
+
# Additional Utilities
|
50 |
+
matplotlib==3.8.0
|
51 |
+
seaborn==0.12.2
|
52 |
+
tqdm==4.65.0
|
53 |
+
plotly==5.12.0
|