Labeled data
Access the labeled data of your DataGym Projects
Last updated
Was this helpful?
Access the labeled data of your DataGym Projects
Last updated
Was this helpful?
Wouldn't it be pretty convenient to load the data of our labeled images directly into our python project? In this example we fetch our Dummy Project by providing its name and download the labeled data into our python app. Therefore, we use the export_labels
method of the Client that requires the Project ID.
export_labels
returns the labels as a Python Dictionary that resembles the JSON format introduced in the section.
You can also generate a hyperlink to the JSON file if you want to download it with your browser or another programmatic solution.
You can not only export your labels but also import annotated image data into your DataGym.ai Project using our feature.
import_label_data
returns a List of Errors if JSON is malformed or data is invalid
Visit our to learn how to to upload label predictions into DataGym.ai
Use the import_label_data
method of the Client class to import labels. The method takes a Project ID and your pre-labeled image data as Dictionary. Visit our or to learn how to format your labels into a valid JSON format.