Update README.md
Browse files
README.md
CHANGED
@@ -24,7 +24,7 @@ datasets:
|
|
24 |
Get started chatting with `StableLM-Tuned-Alpha` by using the following code snippet:
|
25 |
|
26 |
```python
|
27 |
-
from transformers import AutoModelForCausalLM, AutoTokenizer
|
28 |
|
29 |
tokenizer = AutoTokenizer.from_pretrained("StabilityAI/stablelm-tuned-alpha-7b")
|
30 |
model = AutoModelForCausalLM.from_pretrained("StabilityAI/stablelm-tuned-alpha-7b")
|
|
|
24 |
Get started chatting with `StableLM-Tuned-Alpha` by using the following code snippet:
|
25 |
|
26 |
```python
|
27 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer, StoppingCriteria, StoppingCriteriaList
|
28 |
|
29 |
tokenizer = AutoTokenizer.from_pretrained("StabilityAI/stablelm-tuned-alpha-7b")
|
30 |
model = AutoModelForCausalLM.from_pretrained("StabilityAI/stablelm-tuned-alpha-7b")
|