use proper pipeline example
Browse files
README.md
CHANGED
@@ -62,10 +62,10 @@ You can use the model for inference tasks like question-answering and medical di
|
|
62 |
|
63 |
from transformers import pipeline
|
64 |
|
65 |
-
|
66 |
question = "What are the symptoms of diabetes?"
|
67 |
context = "Diabetes is a metabolic disease that causes high blood sugar. The symptoms include increased thirst, frequent urination, and unexplained weight loss."
|
68 |
-
answer =
|
69 |
print(answer)
|
70 |
```
|
71 |
|
|
|
62 |
|
63 |
from transformers import pipeline
|
64 |
|
65 |
+
pl = pipeline("text-generation", model="medalpaca/medalpaca-7b", tokenizer="medalpaca/medalpaca-7b")
|
66 |
question = "What are the symptoms of diabetes?"
|
67 |
context = "Diabetes is a metabolic disease that causes high blood sugar. The symptoms include increased thirst, frequent urination, and unexplained weight loss."
|
68 |
+
answer = pl(f"Context: {context}\n\nQuestion: {question}\n\nAnswer: ")
|
69 |
print(answer)
|
70 |
```
|
71 |
|