Update README.md
Browse files
README.md
CHANGED
@@ -85,9 +85,9 @@ mitigate potential bias and safety. We would strongly discourage any use of B
|
|
85 |
|
86 |
The fastest way to get started with BLING is through direct import in transformers:
|
87 |
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
|
92 |
The BLING model was fine-tuned with a simple "<human> and <bot> wrapper", so to get the best results, wrap inference entries as:
|
93 |
|
|
|
85 |
|
86 |
The fastest way to get started with BLING is through direct import in transformers:
|
87 |
|
88 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
89 |
+
tokenizer = AutoTokenizer.from_pretrained("llmware/bling-1.4b-0.1")
|
90 |
+
model = AutoModelForCausalLM.from_pretrained("llmware/bling-1.4b-0.1")
|
91 |
|
92 |
The BLING model was fine-tuned with a simple "<human> and <bot> wrapper", so to get the best results, wrap inference entries as:
|
93 |
|