taesiri commited on
Commit
9c164e3
1 Parent(s): 66bd521

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -1
README.md CHANGED
@@ -62,7 +62,9 @@ An example looks like this:
62
  The data instances have the following fields:
63
 
64
  - image: A PIL.Image.Image object containing the image. Note that when accessing the image column: dataset[0]["image"] the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the "image" column, i.e. dataset[0]["image"] should always be preferred over dataset["image"][0].
65
- - label: a List[int] collection containing the ground-truth ids.
 
 
66
 
67
 
68
  <details>
 
62
  The data instances have the following fields:
63
 
64
  - image: A PIL.Image.Image object containing the image. Note that when accessing the image column: dataset[0]["image"] the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the "image" column, i.e. dataset[0]["image"] should always be preferred over dataset["image"][0].
65
+ - label: A List[int] collection containing the ground-truth ids.
66
+ - origin: A string containing source dataset.
67
+ - english_label: A List[str] collection containg the english labels for the ground-truth classes.
68
 
69
 
70
  <details>