Update README.md
Browse files
README.md
CHANGED
@@ -16,6 +16,48 @@ tags:
|
|
16 |
- OASIS
|
17 |
---
|
18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
# Uploaded model
|
20 |
|
21 |
- **Developed by:** exafluence
|
|
|
16 |
- OASIS
|
17 |
---
|
18 |
|
19 |
+
# OASISCoder-Llama-3.2-3B
|
20 |
+
|
21 |
+
### Model Description
|
22 |
+
**OASISCoder-Llama-3.2-3B** is a fine-tuned version of the **LLaMA 3.2 3B** model, trained specifically on a **medical coding dataset** focusing on **CMS (Centers for Medicare & Medicaid Services)** and **OASIS (Outcome and Assessment Information Set)** standards. The model is designed to assist healthcare professionals and organizations in generating accurate medical codes and streamlining documentation tasks. It supports **medical question-answering**, **medical coding**, and **clinical decision support**, with an emphasis on regulatory compliance and documentation quality in the US healthcare system.
|
23 |
+
|
24 |
+
### Intended Use Cases
|
25 |
+
- **Medical Coding (CMS, OASIS)**: Supports automated or semi-automated coding tasks in clinical documentation, reducing administrative burden for healthcare providers.
|
26 |
+
- **Clinical Decision Support**: Provides relevant, context-aware answers based on healthcare standards and medical queries.
|
27 |
+
- **Healthcare QA Systems**: Useful for building medical chatbots and virtual assistants that handle queries related to CMS regulations, OASIS standards, and healthcare procedures.
|
28 |
+
- **Medical Compliance**: Ensures accurate documentation for home healthcare assessments and improves regulatory compliance in clinical settings.
|
29 |
+
|
30 |
+
### Training Data
|
31 |
+
The model was fine-tuned on a **comprehensive medical coding dataset** integrating **CMS** and **OASIS** data, including real-world clinical documentation and coding tasks. The dataset includes examples of medical diagnoses, procedures, patient assessments, and coding annotations following CMS and OASIS regulations.
|
32 |
+
|
33 |
+
### Architecture
|
34 |
+
The model is based on **LLaMA 3.2 3B**, a powerful large language model architecture optimized for language understanding and generation tasks. Fine-tuning on the medical domain allows it to provide highly specialized and accurate outputs for healthcare tasks.
|
35 |
+
|
36 |
+
### Performance
|
37 |
+
- **Accuracy**: The model demonstrates a high accuracy rate in generating CMS and OASIS codes from clinical text and answering medical queries.
|
38 |
+
- **Efficiency**: Fine-tuning on specific healthcare tasks has reduced the model's processing time for medical coding and decision support tasks.
|
39 |
+
|
40 |
+
### Limitations
|
41 |
+
- **Not a Diagnostic Tool**: This model is not intended for making medical diagnoses and should not be used as a replacement for professional medical judgment.
|
42 |
+
- **Bias and Data Coverage**: The model's performance is best on US healthcare data (CMS, OASIS), and may not generalize well to other healthcare systems or international coding standards.
|
43 |
+
|
44 |
+
### License
|
45 |
+
The model is released under the **Apache License 2.0**, making it available for non-commercial research and development purposes.
|
46 |
+
|
47 |
+
### How to Use
|
48 |
+
|
49 |
+
```python
|
50 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
51 |
+
|
52 |
+
tokenizer = AutoTokenizer.from_pretrained("exafluence/OASISCoder-Llama-3.2-3B")
|
53 |
+
model = AutoModelForCausalLM.from_pretrained("exafluence/OASISCoder-Llama-3.2-3B")
|
54 |
+
|
55 |
+
input_text = "What is the CMS code for a patient with diabetes?"
|
56 |
+
inputs = tokenizer(input_text, return_tensors="pt")
|
57 |
+
outputs = model.generate(**inputs)
|
58 |
+
```
|
59 |
+
|
60 |
+
|
61 |
# Uploaded model
|
62 |
|
63 |
- **Developed by:** exafluence
|