medllama3-v20 / README.md
leonnissen's picture
Upload folder using huggingface_hub (#1)
6e241fd verified
---
base_model: ProbeMedicalYonseiMAILab/medllama3-v20
license: llama3
tags:
- mlx
---
# mlx-community/medllama3-v20
The Model [mlx-community/medllama3-v20](https://huggingface.co/mlx-community/medllama3-v20) was
converted to MLX format from [ProbeMedicalYonseiMAILab/medllama3-v20](https://huggingface.co/ProbeMedicalYonseiMAILab/medllama3-v20)
using mlx-lm version **0.20.1**.
## Use with mlx
```bash
pip install mlx-lm
```
```python
from mlx_lm import load, generate
model, tokenizer = load("mlx-community/medllama3-v20")
prompt="hello"
if hasattr(tokenizer, "apply_chat_template") and tokenizer.chat_template is not None:
messages = [{"role": "user", "content": prompt}]
prompt = tokenizer.apply_chat_template(
messages, tokenize=False, add_generation_prompt=True
)
response = generate(model, tokenizer, prompt=prompt, verbose=True)
```