fix README to reflect correct format of the`points` field
Browse filesThe `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.
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
|
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 |
|