Instructions to use ThisIs-Developer/Llama-2-GGML-Medical-Chatbot with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ThisIs-Developer/Llama-2-GGML-Medical-Chatbot with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="ThisIs-Developer/Llama-2-GGML-Medical-Chatbot") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("ThisIs-Developer/Llama-2-GGML-Medical-Chatbot", device_map="auto") - Notebooks
- Google Colab
- Kaggle
Commit 路
753324d
1
Parent(s): 998b3ba
Update README.md
Browse files
README.md
CHANGED
|
@@ -2,10 +2,13 @@
|
|
| 2 |
license: mit
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
-
pipeline_tag:
|
| 6 |
tags:
|
| 7 |
-
- python
|
| 8 |
- llama2
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
---
|
| 10 |
# 馃悕 Llama-2-GGML-Medical-Chatbot 馃
|
| 11 |
The **Llama-2-7B-Chat-GGML-Medical-Chatbot** is a repository for a medical chatbot that uses the _Llama-2-7B-Chat-GGML_ model and the pdf _The Gale Encyclopedia of Medicine_. The chatbot is still under development, but it has the potential to be a valuable tool for patients, healthcare professionals, and researchers. The chatbot can be used to answer questions about medical topics, provide summaries of medical articles, and generate medical text. However, it is important to note that the chatbot is not a substitute for medical advice from a qualified healthcare professional.
|
|
|
|
| 2 |
license: mit
|
| 3 |
language:
|
| 4 |
- en
|
| 5 |
+
pipeline_tag: question-answering
|
| 6 |
tags:
|
|
|
|
| 7 |
- llama2
|
| 8 |
+
- text-generation
|
| 9 |
+
- text-classification
|
| 10 |
+
- conversational
|
| 11 |
+
library_name: transformers
|
| 12 |
---
|
| 13 |
# 馃悕 Llama-2-GGML-Medical-Chatbot 馃
|
| 14 |
The **Llama-2-7B-Chat-GGML-Medical-Chatbot** is a repository for a medical chatbot that uses the _Llama-2-7B-Chat-GGML_ model and the pdf _The Gale Encyclopedia of Medicine_. The chatbot is still under development, but it has the potential to be a valuable tool for patients, healthcare professionals, and researchers. The chatbot can be used to answer questions about medical topics, provide summaries of medical articles, and generate medical text. However, it is important to note that the chatbot is not a substitute for medical advice from a qualified healthcare professional.
|