Update README.md
Browse files
README.md
CHANGED
@@ -20,11 +20,11 @@ This model is released under the Apache License 2.0.
|
|
20 |
Install the required libraries as follows:
|
21 |
```sh
|
22 |
>>> python -m pip install numpy sentencepiece torch transformers
|
23 |
-
|
24 |
```
|
25 |
|
26 |
Execute the following python code:
|
27 |
```python
|
|
|
28 |
tokenizer = AutoTokenizer.from_pretrained(
|
29 |
"pfnet/plamo-13b-instruct",
|
30 |
trust_remote_code=True,
|
|
|
20 |
Install the required libraries as follows:
|
21 |
```sh
|
22 |
>>> python -m pip install numpy sentencepiece torch transformers
|
|
|
23 |
```
|
24 |
|
25 |
Execute the following python code:
|
26 |
```python
|
27 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
28 |
tokenizer = AutoTokenizer.from_pretrained(
|
29 |
"pfnet/plamo-13b-instruct",
|
30 |
trust_remote_code=True,
|