Text Generation
Transformers
PyTorch
English
llama
causal-lm
Inference Endpoints
text-generation-inference
pvduy commited on
Commit
2c8d73c
1 Parent(s): 487b69f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -1
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
- `pip install git+https://github.com/huggingface/transformers@c612628045822f909020f7eb6784c79700813eda`
 
 
 
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