You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
2.9 KiB
53 lines
2.9 KiB
2 years ago
|
---
|
||
|
comments: true
|
||
1 year ago
|
description: Learn how to use Roboflow for organizing, labelling, preparing, and hosting your datasets for YOLOv5 models. Enhance your model deployments with our platform.
|
||
|
keywords: Ultralytics, YOLOv5, Roboflow, data organization, data labelling, data preparation, model deployment, active learning, machine learning pipeline
|
||
2 years ago
|
---
|
||
|
|
||
2 years ago
|
# Roboflow Datasets
|
||
|
|
||
1 year ago
|
You can now use Roboflow to organize, label, prepare, version, and host your datasets for training YOLOv5 🚀 models. Roboflow is free to use with YOLOv5 if you make your workspace public. UPDATED 7 June 2023.
|
||
2 years ago
|
|
||
|
!!! warning
|
||
|
|
||
|
Roboflow users can use Ultralytics under the [AGPL license](https://github.com/ultralytics/ultralytics/blob/main/LICENSE) or procure an [Enterprise license](https://ultralytics.com/license) directly from Ultralytics. Be aware that Roboflow does **not** provide Ultralytics licenses, and it is the responsibility of the user to ensure appropriate licensing.
|
||
2 years ago
|
|
||
|
## Upload
|
||
2 years ago
|
|
||
1 year ago
|
You can upload your data to Roboflow via [web UI](https://docs.roboflow.com/adding-data), [REST API](https://docs.roboflow.com/adding-data/upload-api), or [Python](https://docs.roboflow.com/python).
|
||
2 years ago
|
|
||
|
## Labeling
|
||
2 years ago
|
|
||
2 years ago
|
After uploading data to Roboflow, you can label your data and review previous labels.
|
||
|
|
||
|
[![Roboflow Annotate](https://roboflow-darknet.s3.us-east-2.amazonaws.com/roboflow-annotate.gif)](https://roboflow.com/annotate)
|
||
|
|
||
|
## Versioning
|
||
2 years ago
|
|
||
2 years ago
|
You can make versions of your dataset with different preprocessing and offline augmentation options. YOLOv5 does online augmentations natively, so be intentional when layering Roboflow's offline augs on top.
|
||
|
|
||
|
![Roboflow Preprocessing](https://roboflow-darknet.s3.us-east-2.amazonaws.com/robolfow-preprocessing.png)
|
||
|
|
||
|
## Exporting Data
|
||
2 years ago
|
|
||
2 years ago
|
You can download your data in YOLOv5 format to quickly begin training.
|
||
|
|
||
|
```
|
||
|
from roboflow import Roboflow
|
||
|
rf = Roboflow(api_key="YOUR API KEY HERE")
|
||
|
project = rf.workspace().project("YOUR PROJECT")
|
||
|
dataset = project.version("YOUR VERSION").download("yolov5")
|
||
|
```
|
||
|
|
||
|
## Custom Training
|
||
2 years ago
|
|
||
2 years ago
|
We have released a custom training tutorial demonstrating all of the above capabilities. You can access the code here:
|
||
|
|
||
|
[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/roboflow-ai/yolov5-custom-training-tutorial/blob/main/yolov5-custom-training.ipynb)
|
||
|
|
||
|
## Active Learning
|
||
2 years ago
|
|
||
2 years ago
|
The real world is messy and your model will invariably encounter situations your dataset didn't anticipate. Using [active learning](https://blog.roboflow.com/what-is-active-learning/) is an important strategy to iteratively improve your dataset and model. With the Roboflow and YOLOv5 integration, you can quickly make improvements on your model deployments by using a battle tested machine learning pipeline.
|
||
|
|
||
1 year ago
|
<p align=""><a href="https://roboflow.com/?ref=ultralytics"><img width="1000" src="https://uploads-ssl.webflow.com/5f6bc60e665f54545a1e52a5/615627e5824c9c6195abfda9_computer-vision-cycle.png"/></a></p>
|