File size: 2,028 Bytes
0d0f971 98d98df 0d0f971 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
---
license: mit
language:
- en
base_model:
- google-bert/bert-base-uncased
pipeline_tag: text-classification
library_name: transformers.js
tags:
- medical
---
# Model Card for Disease Symptom Recognition Model
## Model Details
### Model Description
This model is a fine-tuned BERT-based architecture designed to recognize and classify symptoms of diseases. It has been trained on a curated dataset containing labeled descriptions of various disease symptoms and converted to ONNX for efficient inference.
- **Developed by:** Mihi
- **Funded by:** Self-funded
- **Shared by:** Mihi
- **Model type:** NLP Classification
- **Language(s):** English
- **License:** MIT
- **Finetuned from model:** BERT base uncased
### Model Sources
- **Repository:** [GitHub Repository Link] (replace with actual link)
- **Demo:** [Demo Link] (replace with actual link)
---
## Uses
### Direct Use
This model can be used directly for symptom classification in applications like:
- Symptom checkers for healthcare applications
- Medical chatbots for triage
- Data analysis in public health studies
### Downstream Use
The model may be fine-tuned further or integrated into larger healthcare solutions involving disease diagnosis or prediction.
### Out-of-Scope Use
- The model is not designed for diagnosing diseases.
- It should not be used as a substitute for professional medical advice.
---
## Bias, Risks, and Limitations
- The model's performance is limited to the scope and quality of the training data. It may not perform well on symptoms outside its training domain.
- Potential biases in the training data can lead to inaccurate predictions for underrepresented diseases or symptoms.
### Recommendations
- Ensure proper pre-screening of the output by medical professionals before clinical application.
- Perform further fine-tuning or retraining if applied in domains outside the original dataset.
---
## How to Get Started with the Model
Install the required dependencies:
```bash
pip install transformers onnxruntime |