Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: gpl-3.0
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: gpl-3.0
|
| 3 |
+
---
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
Run model with [this GPT implementation](https://github.com/jmaczan/gpt/)
|
| 7 |
+
|
| 8 |
+
```py
|
| 9 |
+
python src/run.py --from-checkpoint checkpoint_path.pth
|
| 10 |
+
```
|
| 11 |
+
|
| 12 |
+
Resume training
|
| 13 |
+
```py
|
| 14 |
+
python src/train.py --from-checkpoint checkpoint_path.pth
|
| 15 |
+
```
|