File size: 1,072 Bytes
dff2c41
6da952e
 
 
 
 
 
 
 
 
 
 
 
dff2c41
6da952e
 
 
dff2c41
 
bb53229
 
dff2c41
 
 
 
bb53229
dff2c41
 
 
 
 
 
 
 
 
 
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
# LLAVABrain Dataset
---
license: mit
task_categories:
  - image-to-text
language_creators:
  - machine-generated
annotations_creators:
  - machine-generated
pretty_name: LLAVABrain
size_categories:
  - n<1K
---

# LLAVABrain Dataset

LLAVA-compatible brain tumor dataset...
This is a LLAVA-compatible brain tumor dataset in JSONL format with image-text pairs for multimodal training.

-  **Modality**: Image + Text (Conversations)
-  **Structure**:
  - `train.jsonl`: JSONL file where each entry contains:
    - `"image"`: path to image file (e.g., `images/1.jpg`)
    - `"conversations"`: list of message-response pairs
  - `images/`: contains 20 MRI image files
-    Compatible with LLaVA-style training.

Example:
```json
{
  "image": "images/1.jpg",
  "conversations": [
    {"from": "user", "value": "<image>\nDescribe tumor properties in JSON."},
    {"from": "assistant", "value": "{\n  \"tumor_type\": \"meningioma\",\n  \"tumor_size_cm\": 2.7,\n  \"location\": \"right cerebellopontine angle\",\n  \"edema\": false,\n  \"enhancement\": \"homogeneous\"\n}"}
  ]
}