FranciscoLozDataScience commited on
Commit
aa11ab1
1 Parent(s): aed8466

forgot comma

Browse files
Files changed (1) hide show
  1. README.md +4 -4
README.md CHANGED
@@ -46,17 +46,17 @@ A data point comprises an image, its classification label, a prompt, and mulitpl
46
  ```
47
  {
48
  'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=224x224 at 0x1215D0C50>,
49
- 'label': 'smoke',
50
- 'Prompt': 'What is shown in the image?'
51
  'choice': ['cloud', 'other', 'smoke']
52
  }
53
  ```
54
 
55
  ### Data Fields
56
 
57
- - `image`: A `PIL.Image.Image` object containing the image.
58
  - `label`: the expected class label of the image.
59
- - `Prompt`: the prompt that will be sent to the LLM.
60
  - `choice`: the choices that the LLM can choose from.
61
 
62
  # Scoring
 
46
  ```
47
  {
48
  'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=224x224 at 0x1215D0C50>,
49
+ 'label': 2,
50
+ 'prompt': 'What is shown in the image?',
51
  'choice': ['cloud', 'other', 'smoke']
52
  }
53
  ```
54
 
55
  ### Data Fields
56
 
57
+ - `image`: A `PIL.JpegImagePlugin.JpegImageFile` object containing the image.
58
  - `label`: the expected class label of the image.
59
+ - `prompt`: the prompt that will be sent to the LLM.
60
  - `choice`: the choices that the LLM can choose from.
61
 
62
  # Scoring