Canstralian
commited on
Create requirements.txt
Browse files- requirements.txt +15 -0
requirements.txt
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Base libraries for Hugging Face models
|
2 |
+
transformers==4.30.0 # Hugging Face Transformers library for model management
|
3 |
+
torch==2.0.0 # PyTorch library for model training and inference
|
4 |
+
# or for TensorFlow
|
5 |
+
# tensorflow==2.12.0 # Uncomment if using TensorFlow
|
6 |
+
|
7 |
+
# Other libraries commonly used in machine learning projects
|
8 |
+
numpy==1.24.0 # NumPy for numerical operations
|
9 |
+
pandas==1.5.3 # Pandas for data manipulation
|
10 |
+
scikit-learn==1.2.0 # Scikit-learn for machine learning utilities
|
11 |
+
datasets==2.12.0 # Hugging Face Datasets library for dataset handling
|
12 |
+
# Add other libraries as needed
|
13 |
+
|
14 |
+
# Optional: For logging and monitoring (if used in your project)
|
15 |
+
wandb==0.15.0 # Weights & Biases for experiment tracking
|