Datasets:
Tasks:
Visual Question Answering
Formats:
parquet
Languages:
English
Size:
10K - 100K
ArXiv:
Tags:
medical
License:
Commit
·
4ecd15c
1
Parent(s):
06eacce
Update README.md
Browse files
README.md
CHANGED
@@ -46,11 +46,10 @@ The question-answer pairs are in English.
|
|
46 |
## Dataset Structure
|
47 |
|
48 |
### Data Instances
|
49 |
-
Each instance consists of an image-question-answer triplet.
|
50 |
-
excluding the file extension, which is `.jpg`.
|
51 |
|
52 |
Example from training dataset:
|
53 |
-
```
|
54 |
{
|
55 |
'image': 'train_0001',
|
56 |
'question': 'What is the appearance of the chromatin texture, with fine and coarse clumps?',
|
@@ -58,7 +57,7 @@ Example from training dataset:
|
|
58 |
}
|
59 |
```
|
60 |
Example from validation dataset:
|
61 |
-
```
|
62 |
{
|
63 |
'image': 'val_0000',
|
64 |
'question': 'How are the organisms?',
|
@@ -66,12 +65,22 @@ Example from validation dataset:
|
|
66 |
}
|
67 |
```
|
68 |
Example from test dataset:
|
69 |
-
```
|
70 |
{
|
71 |
'image': 'test_0001',
|
72 |
'question': 'Is squamous cell carcinoma composed of nests of malignant cells that partially recapitulate the stratified organization of squamous epithelium?',
|
73 |
'answer': 'yes'
|
74 |
}
|
75 |
```
|
76 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
|
|
|
|
|
|
|
|
|
|
46 |
## Dataset Structure
|
47 |
|
48 |
### Data Instances
|
49 |
+
Each instance consists of an image-question-answer triplet.
|
|
|
50 |
|
51 |
Example from training dataset:
|
52 |
+
```
|
53 |
{
|
54 |
'image': 'train_0001',
|
55 |
'question': 'What is the appearance of the chromatin texture, with fine and coarse clumps?',
|
|
|
57 |
}
|
58 |
```
|
59 |
Example from validation dataset:
|
60 |
+
```
|
61 |
{
|
62 |
'image': 'val_0000',
|
63 |
'question': 'How are the organisms?',
|
|
|
65 |
}
|
66 |
```
|
67 |
Example from test dataset:
|
68 |
+
```
|
69 |
{
|
70 |
'image': 'test_0001',
|
71 |
'question': 'Is squamous cell carcinoma composed of nests of malignant cells that partially recapitulate the stratified organization of squamous epithelium?',
|
72 |
'answer': 'yes'
|
73 |
}
|
74 |
```
|
75 |
+
### Data Fields
|
76 |
+
- `'image'`: the filename of the referenced image, excluding the file extension, which is `.jpg`.
|
77 |
+
- `'question'`: the text of the question about the image.
|
78 |
+
- `'answer'`: the text of the expected answer.
|
79 |
+
|
80 |
+
### Data Splits
|
81 |
+
The dataset is split into training, validation and test. The split is provided by the authors.
|
82 |
|
83 |
+
| | train | validation | test |
|
84 |
+
|-------------------------|------:|-----------:|-----:|
|
85 |
+
| Input Sentences | | | |
|
86 |
+
| Average Sentence Length | | | |
|