Update README.md
Browse files
README.md
CHANGED
@@ -29,7 +29,10 @@ python3 apply_delta.py --base /path/to/model_weights/llama-13b --target stable-v
|
|
29 |
## Usage
|
30 |
|
31 |
Once the delta weights are applied, get started chatting with the model by using the [`transformers`](https://huggingface.co/docs/transformers) library. Following a suggestion from Vicuna Team with Vicuna v0 you should install transformers with this version:
|
32 |
-
|
|
|
|
|
|
|
33 |
|
34 |
```python
|
35 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
|
|
29 |
## Usage
|
30 |
|
31 |
Once the delta weights are applied, get started chatting with the model by using the [`transformers`](https://huggingface.co/docs/transformers) library. Following a suggestion from Vicuna Team with Vicuna v0 you should install transformers with this version:
|
32 |
+
|
33 |
+
```sh
|
34 |
+
pip install git+https://github.com/huggingface/transformers@c612628045822f909020f7eb6784c79700813eda
|
35 |
+
```
|
36 |
|
37 |
```python
|
38 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|