Update README.md
#2
by
vovw
- opened
README.md
CHANGED
|
@@ -68,11 +68,11 @@ BLING has not been designed for end consumer-oriented applications, and there ha
|
|
| 68 |
## How to Get Started with the Model
|
| 69 |
|
| 70 |
The fastest way to get started with BLING is through direct import in transformers:
|
| 71 |
-
|
| 72 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 73 |
tokenizer = AutoTokenizer.from_pretrained("llmware/bling-1b-0.1")
|
| 74 |
model = AutoModelForCausalLM.from_pretrained("llmware/bling-1b-0.1")
|
| 75 |
-
|
| 76 |
|
| 77 |
The BLING model was fine-tuned with a simple "\<human> and \<bot> wrapper", so to get the best results, wrap inference entries as:
|
| 78 |
|
|
|
|
| 68 |
## How to Get Started with the Model
|
| 69 |
|
| 70 |
The fastest way to get started with BLING is through direct import in transformers:
|
| 71 |
+
```py
|
| 72 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
| 73 |
tokenizer = AutoTokenizer.from_pretrained("llmware/bling-1b-0.1")
|
| 74 |
model = AutoModelForCausalLM.from_pretrained("llmware/bling-1b-0.1")
|
| 75 |
+
```
|
| 76 |
|
| 77 |
The BLING model was fine-tuned with a simple "\<human> and \<bot> wrapper", so to get the best results, wrap inference entries as:
|
| 78 |
|