Update README.md
Browse files
README.md
CHANGED
@@ -27,7 +27,7 @@ To dive in, you’ll need:
|
|
27 |
|
28 |
1. **Clone the repository:**
|
29 |
```bash
|
30 |
-
git clone https://huggingface.co/GEM025/GEM_Arsenal
|
31 |
```
|
32 |
|
33 |
2. **Install Dependencies:**
|
@@ -65,21 +65,21 @@ warnings.filterwarnings('ignore')
|
|
65 |
"""
|
66 |
|
67 |
#@ Step 1: Clone the github repo
|
68 |
-
!git clone https://huggingface.co/GEM025/GEM_Arsenal
|
69 |
|
70 |
#@ Step 2: Install all requirements
|
71 |
-
!pip install -r /content/
|
72 |
|
73 |
"""
|
74 |
|
75 |
@! For kaggle:
|
76 |
-
!pip install -r /kaggle/working/
|
77 |
|
78 |
"""
|
79 |
|
80 |
#@ Step 3: Add repo to path
|
81 |
import sys
|
82 |
-
sys.path.append('/content/
|
83 |
|
84 |
#@ Step 4: Import and run function
|
85 |
from gem_trainer import run_gem_pipeline
|
|
|
27 |
|
28 |
1. **Clone the repository:**
|
29 |
```bash
|
30 |
+
git clone https://huggingface.co/datasets/GEM025/GEM_Arsenal
|
31 |
```
|
32 |
|
33 |
2. **Install Dependencies:**
|
|
|
65 |
"""
|
66 |
|
67 |
#@ Step 1: Clone the github repo
|
68 |
+
! git clone https://huggingface.co/datasets/GEM025/GEM_Arsenal
|
69 |
|
70 |
#@ Step 2: Install all requirements
|
71 |
+
!pip install -r /content/GEM_Arsenal/requirements.txt #! For colab
|
72 |
|
73 |
"""
|
74 |
|
75 |
@! For kaggle:
|
76 |
+
!pip install -r /kaggle/working/GEM_Arsenal/requirements.txt
|
77 |
|
78 |
"""
|
79 |
|
80 |
#@ Step 3: Add repo to path
|
81 |
import sys
|
82 |
+
sys.path.append('/content/GEM_Arsenal') #! Or /kaggle/working/GEM_Arsenal (for kaggle)
|
83 |
|
84 |
#@ Step 4: Import and run function
|
85 |
from gem_trainer import run_gem_pipeline
|