-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequirements.txt
43 lines (30 loc) · 1.02 KB
/
requirements.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Data manipulation and analysis
pandas==2.0.3
# Operating system interface
os-sys==2.1.4
# Machine Learning and Preprocessing
scikit-learn==1.3.0
# Statistical Analysis
scipy==1.11.2
# Language Detection
langdetect==1.0.9
# LangChain for LLMs and prompt management
langchain==0.101.0
langchain-community==0.0.1
# Hugging Face Transformers for GPT-2
transformers==4.30.0
# PyTorch (for working with Hugging Face Transformers)
torch==2.0.1
# Numerical Computation
numpy==1.25.2
# Keras for Neural Networks
keras==2.13.1
tensorflow==2.13.0 # Ensure TensorFlow is included, as Keras is often used with TensorFlow backend
# Google Generative AI
google-generativeai==0.1.0 # Assuming the version, update if necessary
# Logging
logging # Included in standard library, no need to specify in requirements.txt
# Datetime management
datetime # Included in standard library, no need to specify in requirements.txt
# Optional: Other useful packages for compatibility
matplotlib==3.7.2 # Visualization (useful for debugging, optional)