osanseviero
commited on
Commit
•
2954c0d
1
Parent(s):
767f1ea
Add download instructions
Browse files
README.md
CHANGED
@@ -1,11 +1,18 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
|
|
3 |
---
|
4 |
# Grok-1
|
5 |
|
6 |
This repository contains the weights of the Grok-1 open-weights model.
|
7 |
|
8 |
-
Make sure to download the `int8` checkpoint to the `checkpoints` directory
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
|
10 |
```shell
|
11 |
pip install -r requirements.txt
|
@@ -16,4 +23,4 @@ to test the code.
|
|
16 |
|
17 |
You should be seeing output from the language model.
|
18 |
|
19 |
-
Due to the large size of the model (314B parameters), a multi-GPU machine is required to test the model with the example code.
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
+
pipeline_tag: text-generation
|
4 |
---
|
5 |
# Grok-1
|
6 |
|
7 |
This repository contains the weights of the Grok-1 open-weights model.
|
8 |
|
9 |
+
Make sure to download the `int8` checkpoint to the `checkpoints` directory.
|
10 |
+
|
11 |
+
```shell
|
12 |
+
huggingface-cli download xai-org/grok-1 --repo-type model --include ckpt/tensor* --local-dir checkpoints/ckpt-0 --local-dir-use-symlinks False
|
13 |
+
```
|
14 |
+
|
15 |
+
Then, you can run:
|
16 |
|
17 |
```shell
|
18 |
pip install -r requirements.txt
|
|
|
23 |
|
24 |
You should be seeing output from the language model.
|
25 |
|
26 |
+
Due to the large size of the model (314B parameters), a multi-GPU machine is required to test the model with the example code.
|