flaviagiammarino commited on
Commit
06eacce
·
1 Parent(s): c6c677c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -46,11 +46,11 @@ The question-answer pairs are in English.
46
  ## Dataset Structure
47
 
48
  ### Data Instances
49
- Each instance consists of an image-question-answer triplet. The 'image' field is the filename of the referenced image,
50
  excluding the file extension, which is `.jpg`.
51
 
52
  Example from training dataset:
53
- ```json
54
  {
55
  'image': 'train_0001',
56
  'question': 'What is the appearance of the chromatin texture, with fine and coarse clumps?',
@@ -58,7 +58,7 @@ Example from training dataset:
58
  }
59
  ```
60
  Example from validation dataset:
61
- ```json
62
  {
63
  'image': 'val_0000',
64
  'question': 'How are the organisms?',
@@ -66,7 +66,7 @@ Example from validation dataset:
66
  }
67
  ```
68
  Example from test dataset:
69
- ```json
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?',
 
46
  ## Dataset Structure
47
 
48
  ### Data Instances
49
+ Each instance consists of an image-question-answer triplet. The `'image'` field is the filename of the referenced image,
50
  excluding the file extension, which is `.jpg`.
51
 
52
  Example from training dataset:
53
+ ```python
54
  {
55
  'image': 'train_0001',
56
  'question': 'What is the appearance of the chromatin texture, with fine and coarse clumps?',
 
58
  }
59
  ```
60
  Example from validation dataset:
61
+ ```python
62
  {
63
  'image': 'val_0000',
64
  'question': 'How are the organisms?',
 
66
  }
67
  ```
68
  Example from test dataset:
69
+ ```python
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?',