Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

yolov8 docs update #69

Merged
merged 6 commits into from
Dec 25, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions site/content/en/docs/formats/yolo_v8.md
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,22 @@ All coordinates must be normalized and be in range \[0, 1\].
It can be achieved by dividing x coordinates and widths by image width,
and y coordinates and heights by image height.

Since some tools (e.g. [roboflow](https://roboflow.com/formats/yolov8-pytorch-txt))
have the folders order switched when exporting to Ultralytics YOLO format,
datumaro can also import dataset with folders like that:
```bash
archive.zip/
├── train/
│ ├── images/ # directory with images for train subset
│ │ ├── image1.jpg
│ │ ├── image2.jpg
│ │ └── ...
│ ├── labels/ # directory with annotations for train subset
│ │ ├── image1.txt
│ │ ├── image2.txt
│ │ └── ...
```


## Export to other formats

Expand Down