EkaCare Public HealthCare LLMs
Collection
2 items
โข
Updated
This is a purpose-built vision LLM specifically trained for the following downstream tasks on medical records in Indian healthcare context.
A detailed description of this model can be obtained from this blog post.
To use this model, you need to install the following dependencies:
Python 3.10 and the following packages using pip:
pip install torch>=2.7.0 transformers>=4.52.0 pillow==11.3.0
from transformers import AutoModel
repo_name = "ekacare/parrotlet-v-lite-4b"
model = AutoModel.from_pretrained(repo_name, trust_remote_code=True)
model.process("path/to/image", task="lab-report-parsing")
This model is released under the MIT License, enabling broad use while maintaining attribution requirements.