Export Versions
Export data from Roboflow for training.
Last updated
Export data from Roboflow for training.
Last updated
You can export data from Roboflow at any time. You can export data using the Roboflow web interface or our Python package.
To export data, first generate a dataset version in the Roboflow dashboard. You can do so on the "Versions" page associated with your project.
After you have generated a dataset, click "Export" next to your dataset version:
You can download your data in a wide variety of formats. You can see a full list of supported export formats in the "Export" tab of our formats directory.
After selecting an export format, you can choose to either download the data as a .zip
file, or as a curl
link to download from the command line.
The curl
and Python code will contain a private key unique to your account. Do not share this key!
Dataset versions are designed to be used as training data for computer vision models. Therefore, we make some optimizations to improve the training experience and performance of the models.
To prevent training slowdowns, we compress images at a level that maintains a balance between training speed and resolution needed for sufficient model performance.
If you're looking to download the original quality image, you can do so by clicking on a image on your dataset and selecting "Download Image".
You can also access your images programmatically via the Image Details API. The image.urls.original
property states the link to the original quality image.
If you're looking to download your entire dataset original quality images, you can do so by using the Image Search API. Here's a code snippet you can use to do that:
To prevent issues from arising during training, we sanitize class names both at upload/import and export. At export, we perform the following:
Class names are converted to ASCII
Where possible, characters are anglicized (ex: ü
to u
)
Otherwise, they are replaced with a dash (-
)
You can both generate versions and export datasets with the Python package.