Update README.md
Browse files
README.md
CHANGED
@@ -84,9 +84,9 @@ The response should provide the accurate answer to the instruction, while being
|
|
84 |
[Instruction End]
|
85 |
"""
|
86 |
|
87 |
-
from transformers import AutoTokenizer,
|
88 |
-
tokenizer = AutoTokenizer.from_pretrained("starmpcc/Asclepius-13B")
|
89 |
-
model =
|
90 |
|
91 |
note = "This is a sample note"
|
92 |
question = "What is the diagnosis?"
|
|
|
84 |
[Instruction End]
|
85 |
"""
|
86 |
|
87 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
88 |
+
tokenizer = AutoTokenizer.from_pretrained("starmpcc/Asclepius-13B", use_fast=False)
|
89 |
+
model = AutoModelForCausalLM.from_pretrained("starmpcc/Asclepius-13B")
|
90 |
|
91 |
note = "This is a sample note"
|
92 |
question = "What is the diagnosis?"
|