Update README.md
Browse files
README.md
CHANGED
@@ -59,7 +59,7 @@ tokenizer = AutoTokenizer.from_pretrained("microsoft/BioGPT-Large")
|
|
59 |
|
60 |
model = AutoModelForCausalLM.from_pretrained(model_id)
|
61 |
|
62 |
-
def
|
63 |
prompt,
|
64 |
temperature=0.1,
|
65 |
top_p=0.75,
|
@@ -104,7 +104,7 @@ Hi i have sore lumps under the skin on my legs. they started on my left ankle an
|
|
104 |
### Response:
|
105 |
"""
|
106 |
|
107 |
-
print(
|
108 |
```
|
109 |
|
110 |
## Citation
|
|
|
59 |
|
60 |
model = AutoModelForCausalLM.from_pretrained(model_id)
|
61 |
|
62 |
+
def answer_question(
|
63 |
prompt,
|
64 |
temperature=0.1,
|
65 |
top_p=0.75,
|
|
|
104 |
### Response:
|
105 |
"""
|
106 |
|
107 |
+
print(answer_question(example_prompt))
|
108 |
```
|
109 |
|
110 |
## Citation
|