sthoduka commited on
Commit
4a0c503
·
verified ·
1 Parent(s): 2b5c693

fix README to reflect correct format of the`points` field

Browse files

The `points` field contains the x,y coordinates of points represented as a percentage of the image's width and height (i.e. a float between 0-100), not as pixels.

Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -52,7 +52,7 @@ data = datasets.load_dataset("allenai/pixmo-points", split="train")
52
  ## Data Format
53
  Images are stored as URLs that will need to be downloaded separately. Note URLs can be repeated in the data.
54
 
55
- The `points` field contains the x, y coordinates specified in pixels.
56
 
57
  The `label` field contains the string name of what is being pointed at, this can be a simple object name or a more complex referring expression.
58
 
 
52
  ## Data Format
53
  Images are stored as URLs that will need to be downloaded separately. Note URLs can be repeated in the data.
54
 
55
+ The `points` field contains the x, y coordinates specified as a percentage of the image width and height.
56
 
57
  The `label` field contains the string name of what is being pointed at, this can be a simple object name or a more complex referring expression.
58