-
Notifications
You must be signed in to change notification settings - Fork 100
Open
Description
This is not really important, but I think the annotations explanation in your webpage could lead to error to beginners or people who are not used to json formats or python dictionaries:
you have something like this:
{
"info"
: info,
"images"
: [image],
"annotations"
: [annotation],
"licenses"
: [license],
}
info{
"year"
: int,
"version"
: str,
.....
Info should use colons, and as a key, it should be separated from the values by using the character ":" like in this nice explanation
{
"info": {...},
"licenses": [...],
"images": [...],
"annotations": [...],
"categories": [...], <-- Not in Captions annotations
"segment_info": [...] <-- Only in Panoptic annotations
}
"info": {
"description": "COCO 2017 Dataset",
"url": "http://cocodataset.org",
"version": "1.0",
...
Thanks for the great job. Everything is very well explained and the webpage its actually outstanding
Metadata
Metadata
Assignees
Labels
No labels