Update README.md
Browse files
README.md
CHANGED
@@ -70,8 +70,8 @@ BLING has not been designed for end consumer-oriented applications, and there ha
|
|
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-
|
74 |
-
model = AutoModelForCausalLM.from_pretrained("llmware/bling-
|
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:
|
|
|
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:
|