name
: the name of your projectsplits
: a list which only supports train
and val
for now.views
: each entry in the views
list defines a view and contains the following fields:name
: the name of your viewtype
: the type of your view among classification
, tagging
or detection
(see the creation of views to know more) concepts
: each entry in the concepts
list defines a concept and contains the following field:name
: the name of your concept.conditions
: a list of lists of concepts to specify AND and OR conditions. A list of concepts specifies a AND condition and the list of lists specifies OR conditions. id
: nulldata
: each entry in the data
list is an object that contains the field url
that you need to specify. You should for now add only one image per line of your text file. ⚠️If your images are stored locally use the field file
instead of url
and specify the path to the image.metadata
: a string of characters via which you can add metadata to your image as a dictionary. The metadata are displayed in the information popup on Studio.annotations
: each entry in the annotations
list corresponds to a region, with all the information attached to it:concepts
: the list of concepts attached to the region. You should not create an annotation for each view, but instead you need to combine the concepts from all the views required in a single annotation.region
: the actual region, described as a bounding box bbox
, and the coordinates of this bounding box, xmin
, ymin
, xmax
and ymax
. splits
: a list of splits to which the image belongs. You should choose between train
and val
for now.bool
field at True.