æLtorio
commited on
Ajout d'une section TL;DR au README pour faciliter l'utilisation du modèle
Browse files
README.md
CHANGED
@@ -24,6 +24,15 @@ pipeline_tag: image-to-text
|
|
24 |
|
25 |
This repository contains a fine-tuned version of the Hugging Face [Idefics3-8B-Llama3](https://huggingface.co/HuggingFaceM4/Idefics3-8B-Llama3) model, built on top of the Meta Llama 3.1 8B architecture. Our model, `IDEFICS3_ROCO`, has been fine-tuned on the [Radiology Objects in Context (ROCO)](https://huggingface.co/datasets/eltorio/ROCO-radiology) dataset, a large-scale medical and multimodal imaging collection.
|
26 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
### Model Information
|
28 |
|
29 |
* **Base Model:** Idefics3-8B-Llama3
|
|
|
24 |
|
25 |
This repository contains a fine-tuned version of the Hugging Face [Idefics3-8B-Llama3](https://huggingface.co/HuggingFaceM4/Idefics3-8B-Llama3) model, built on top of the Meta Llama 3.1 8B architecture. Our model, `IDEFICS3_ROCO`, has been fine-tuned on the [Radiology Objects in Context (ROCO)](https://huggingface.co/datasets/eltorio/ROCO-radiology) dataset, a large-scale medical and multimodal imaging collection.
|
26 |
|
27 |
+
## TL;DR
|
28 |
+
|
29 |
+
For immediate use, you can load the model directly from Hugging Face:
|
30 |
+
|
31 |
+
```python
|
32 |
+
from transformers import AutoModelForImageTextToText
|
33 |
+
model =AutoModelForImageTextToText.from_pretrained("eltorio/IDEFICS3_ROCO")
|
34 |
+
```
|
35 |
+
|
36 |
### Model Information
|
37 |
|
38 |
* **Base Model:** Idefics3-8B-Llama3
|