huzaifa525 commited on
Commit
633f761
·
verified ·
1 Parent(s): 51562b9

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -0
README.md CHANGED
@@ -16,3 +16,51 @@ tags:
16
  - **Developed by:** huzaifa525
17
  - **License:** apache-2.0
18
  - **Finetuned from model :** Meta-Llama-3.1-8B-bnb-4bit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  - **Developed by:** huzaifa525
17
  - **License:** apache-2.0
18
  - **Finetuned from model :** Meta-Llama-3.1-8B-bnb-4bit
19
+
20
+ # **LLaMA 3.1B Fine-tuned on Medical Dataset**
21
+
22
+ ### **Model Overview**
23
+ This is a fine-tuned version of the **Meta-Llama-3.1-8B-bnb-4bit** model, specifically adapted for the medical field. It has been trained using a dataset that provides extensive information on **diseases, symptoms, and treatments**, making it ideal for AI-powered healthcare tools such as medical chatbots, virtual assistants, and diagnostic support systems.
24
+
25
+ ### **Key Features**
26
+ - **Disease Diagnosis**: Accurately identifies diseases based on symptoms provided by the user.
27
+ - **Symptom Analysis**: Breaks down and interprets symptoms to provide a comprehensive medical overview.
28
+ - **Treatment Recommendations**: Suggests treatments and remedies according to medical conditions.
29
+
30
+ ### **Dataset**
31
+ The model is fine-tuned on 2000 rows from a dataset consisting of **272k rows**. This dataset includes rich information about diseases, symptoms, and their corresponding treatments. The model is continuously being updated and will be further trained on the remaining data in future releases to improve accuracy and capabilities.
32
+
33
+ ### **Model Applications**
34
+ - **Medical Chatbots**: Use for real-time interaction between patients and virtual medical agents.
35
+ - **Healthcare Virtual Assistants**: For symptom checking, health guidance, and first-level triage.
36
+ - **Diagnostic Tools**: To assist healthcare professionals in diagnosing conditions based on symptoms.
37
+ - **Patient Self-Assessment**: Symptom checkers to empower patients in their health journey.
38
+
39
+ ### **How to Use**
40
+
41
+ #### Load model directly
42
+ ```
43
+ from transformers import AutoModel
44
+ model = AutoModel.from_pretrained("huzaifa525/Doctoraifinetune-3.1-8B-gguf")
45
+ ```
46
+ #### How to use from the **llama-cpp-python** library
47
+ ```
48
+ from llama_cpp import Llama
49
+ llm = Llama.from_pretrained(
50
+ repo_id="huzaifa525/Doctoraifinetune-3.1-8B-gguf",
51
+ filename="GGUF_FILE",
52
+ )
53
+ llm.create_chat_completion(
54
+ messages = [
55
+ {
56
+ "role": "user",
57
+ "content": "What is the capital of France?"
58
+ }
59
+ ]
60
+ )
61
+ ```
62
+
63
+ ## **Planned Updates**
64
+ - **Full Dataset Training**: The model will be updated with the full **272k rows** of data, which will improve its disease identification, symptom analysis, and treatment recommendations.
65
+ - **Enhanced Accuracy**: Ongoing improvements based on feedback and further training will continue to refine the model’s performance.
66
+