BeastGokul
commited on
Commit
•
2297046
1
Parent(s):
9f63960
Update README.md
Browse files
README.md
CHANGED
@@ -4,9 +4,183 @@ language:
|
|
4 |
- en
|
5 |
base_model:
|
6 |
- ContactDoctor/Bio-Medical-MultiModal-Llama-3-8B-V1
|
7 |
-
new_version: ContactDoctor/Bio-Medical-MultiModal-Llama-3-8B-V1
|
8 |
pipeline_tag: text-generation
|
9 |
tags:
|
10 |
- biology
|
11 |
- medical
|
12 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
- en
|
5 |
base_model:
|
6 |
- ContactDoctor/Bio-Medical-MultiModal-Llama-3-8B-V1
|
|
|
7 |
pipeline_tag: text-generation
|
8 |
tags:
|
9 |
- biology
|
10 |
- medical
|
11 |
+
---
|
12 |
+
|
13 |
+
# Model Card for Bio-Medical-Llama-3-8B-V1
|
14 |
+
|
15 |
+
This model is a fine-tuned version of **Bio-Medical-Llama-3-8B** for generating text related to biomedical knowledge. It is designed to assist in answering health and medical queries, serving as a robust tool for both healthcare professionals and general users.
|
16 |
+
|
17 |
+
---
|
18 |
+
|
19 |
+
## Model Details
|
20 |
+
|
21 |
+
### Model Description
|
22 |
+
|
23 |
+
- **Developed by:** ContactDoctor
|
24 |
+
- **Funded by:** ContactDoctor Research Lab
|
25 |
+
- **Model type:** Text Generation
|
26 |
+
- **Language(s) (NLP):** English
|
27 |
+
- **License:** MIT
|
28 |
+
- **Finetuned from model:** Bio-Medical-MultiModal-Llama-3-8B
|
29 |
+
|
30 |
+
This model was created to address the need for accurate, conversational assistance in healthcare, biology, and medical science.
|
31 |
+
|
32 |
+
---
|
33 |
+
|
34 |
+
## Uses
|
35 |
+
|
36 |
+
### Direct Use
|
37 |
+
|
38 |
+
Users can employ the model to generate responses to biomedical questions, explanations of medical concepts, and general healthcare advice.
|
39 |
+
|
40 |
+
### Downstream Use
|
41 |
+
|
42 |
+
This model can be further fine-tuned for specific tasks, such as diagnosis support, clinical decision-making, and patient education.
|
43 |
+
|
44 |
+
### Out-of-Scope Use
|
45 |
+
|
46 |
+
The model should not be used as a substitute for professional medical advice, emergency assistance, or detailed medical diagnoses.
|
47 |
+
|
48 |
+
---
|
49 |
+
|
50 |
+
## Bias, Risks, and Limitations
|
51 |
+
|
52 |
+
While the model is trained on extensive biomedical data, it might not cover every condition or the latest advancements. Users are advised to treat responses as informational rather than authoritative.
|
53 |
+
|
54 |
+
### Recommendations
|
55 |
+
|
56 |
+
- Use this model for general guidance, not as a substitute for professional advice.
|
57 |
+
- Regularly review updates and improvements for the latest accuracy enhancements.
|
58 |
+
|
59 |
+
---
|
60 |
+
|
61 |
+
## How to Get Started with the Model
|
62 |
+
|
63 |
+
You can use the model through the Hugging Face API or locally as shown in the example below.
|
64 |
+
|
65 |
+
```python
|
66 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer, pipeline
|
67 |
+
|
68 |
+
# Load the model and tokenizer
|
69 |
+
tokenizer = AutoTokenizer.from_pretrained("ContactDoctor/Bio-Medical-Llama-3-8B-V1")
|
70 |
+
model = AutoModelForCausalLM.from_pretrained("ContactDoctor/Bio-Medical-Llama-3-8B-V1")
|
71 |
+
|
72 |
+
# Initialize the pipeline
|
73 |
+
generator = pipeline("text-generation", model=model, tokenizer=tokenizer)
|
74 |
+
|
75 |
+
# Generate a response
|
76 |
+
response = generator("What is hypertension?", max_length=100)
|
77 |
+
print(response[0]["generated_text"])
|
78 |
+
---
|
79 |
+
license: mit
|
80 |
+
language:
|
81 |
+
- en
|
82 |
+
base_model: ContactDoctor/Bio-Medical-MultiModal-Llama-3-8B-V1
|
83 |
+
pipeline_tag: text-generation
|
84 |
+
tags:
|
85 |
+
- biology
|
86 |
+
- medical
|
87 |
+
- fine-tuning
|
88 |
+
---
|
89 |
+
|
90 |
+
# Model Card for Fine-Tuned Bio-Medical-Llama-3-8B
|
91 |
+
|
92 |
+
This model is a fine-tuned version of **Bio-Medical-Llama-3-8B-V1**, designed to enhance its performance for specialized biomedical and healthcare-related tasks. It provides responses to medical questions, explanations of health conditions, and insights into biology topics.
|
93 |
+
|
94 |
+
---
|
95 |
+
|
96 |
+
## Model Details
|
97 |
+
|
98 |
+
### Model Description
|
99 |
+
|
100 |
+
- **Developed by:** ContactDoctor Research Lab
|
101 |
+
- **Fine-Tuned by:** Gokul Prasath M
|
102 |
+
- **Model type:** Text Generation (Causal Language Modeling)
|
103 |
+
- **Language(s):** English
|
104 |
+
- **License:** MIT
|
105 |
+
- **Fine-Tuned from Model:** Bio-Medical-Llama-3-8B-V1
|
106 |
+
|
107 |
+
This fine-tuned model aims to improve accuracy and relevancy in generating biomedical-related responses, helping healthcare professionals and researchers with faster, more informed guidance.
|
108 |
+
|
109 |
+
---
|
110 |
+
|
111 |
+
## Uses
|
112 |
+
|
113 |
+
### Direct Use
|
114 |
+
|
115 |
+
- Biomedical question answering
|
116 |
+
- Patient education and healthcare guidance
|
117 |
+
- Biology and medical research support
|
118 |
+
|
119 |
+
### Downstream Use
|
120 |
+
|
121 |
+
- Can be further fine-tuned for specific domains within healthcare, such as oncology or pharmacology.
|
122 |
+
- Integrates into larger medical chatbots or virtual assistants for clinical settings.
|
123 |
+
|
124 |
+
### Out-of-Scope Use
|
125 |
+
|
126 |
+
The model is not a substitute for professional medical advice, diagnosis, or treatment. It should not be used for emergency or diagnostic purposes.
|
127 |
+
|
128 |
+
---
|
129 |
+
|
130 |
+
## Fine-Tuning Details
|
131 |
+
|
132 |
+
### Fine-Tuning Dataset
|
133 |
+
|
134 |
+
The model was fine-tuned on a domain-specific dataset consisting of medical articles, clinical notes, and health information databases.
|
135 |
+
|
136 |
+
### Fine-Tuning Procedure
|
137 |
+
|
138 |
+
- **Precision:** Mixed-precision training using bf16 for optimal performance and memory efficiency.
|
139 |
+
- **Quantization:** 4-bit LoRA for lightweight deployment.
|
140 |
+
- **Hyperparameters**:
|
141 |
+
- **Learning Rate**: 2e-5
|
142 |
+
- **Batch Size**: 4
|
143 |
+
- **Epochs**: 3
|
144 |
+
|
145 |
+
### Training Metrics
|
146 |
+
|
147 |
+
During fine-tuning, the model achieved the following results:
|
148 |
+
- **Training Loss:** 0.5396 at 1000 steps
|
149 |
+
|
150 |
+
---
|
151 |
+
|
152 |
+
## Evaluation
|
153 |
+
|
154 |
+
### Evaluation Data
|
155 |
+
|
156 |
+
The model was evaluated on a sample of medical and biological queries to assess its accuracy, relevance, and generalizability across health-related topics.
|
157 |
+
|
158 |
+
### Metrics
|
159 |
+
|
160 |
+
- **Accuracy:** Evaluated by response relevance to medical queries.
|
161 |
+
- **Loss:** Final training loss of 0.5396
|
162 |
+
|
163 |
+
---
|
164 |
+
|
165 |
+
## Example Usage
|
166 |
+
|
167 |
+
```python
|
168 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer, pipeline
|
169 |
+
|
170 |
+
# Load the fine-tuned model and tokenizer
|
171 |
+
tokenizer = AutoTokenizer.from_pretrained("path/to/your-finetuned-model/tokenizer")
|
172 |
+
model = AutoModelForCausalLM.from_pretrained("path/to/your-finetuned-model")
|
173 |
+
|
174 |
+
# Initialize the pipeline
|
175 |
+
generator = pipeline("text-generation", model=model, tokenizer=tokenizer)
|
176 |
+
|
177 |
+
# Generate a response
|
178 |
+
response = generator("What are the symptoms of hypertension?", max_length=100)
|
179 |
+
print(response[0]["generated_text"])
|
180 |
+
```
|
181 |
+
|
182 |
+
## Limitations and Recommendations
|
183 |
+
The model may not cover the latest medical research or all conditions. It is recommended for general guidance rather than direct clinical application.
|
184 |
+
|
185 |
+
## Bias, Risks, and Limitations
|
186 |
+
Potential biases may exist due to dataset limitations. Responses should be verified by professionals for critical decisions.
|