Commit ·
064242e
1
Parent(s): bf5259b
Add the setup_script
Browse files- requirements.txt +14 -0
- setup.sh +6 -0
requirements.txt
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core ML libraries
|
| 2 |
+
torch>=1.9.0
|
| 3 |
+
torchvision>=0.10.0
|
| 4 |
+
numpy>=1.21.0
|
| 5 |
+
|
| 6 |
+
# Training utilities
|
| 7 |
+
wandb>=0.12.0
|
| 8 |
+
pyarrow
|
| 9 |
+
huggingface_hub[cli]
|
| 10 |
+
|
| 11 |
+
# Optional but commonly used
|
| 12 |
+
matplotlib>=3.4.0
|
| 13 |
+
Pillow>=8.3.0
|
| 14 |
+
scikit-learn>=1.0.0
|
setup.sh
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
pip install -r requirements.txt
|
| 2 |
+
git config --global credential.helper store
|
| 3 |
+
git config --global user.name "YashNagaraj"
|
| 4 |
+
git config --global user.email "yashnagraj75@gmail.com"
|
| 5 |
+
huggingface-cli login --token $HF_TOKEN
|
| 6 |
+
wandb login --relogin $WANDB_API_KEY
|