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

I want to customize the YOLOv9 model according to my preferences to fit a custom dataset, how can I do it? #290

Open
TQ-Hung opened this issue Mar 26, 2024 · 2 comments

Comments

@TQ-Hung
Copy link

TQ-Hung commented Mar 26, 2024

No description provided.

@Youho99
Copy link

Youho99 commented Mar 26, 2024

Check Useful Links on the README, and issues !
#30 (comment)

@spacewalk01
Copy link

spacewalk01 commented Mar 27, 2024

It is same as yolov5 except for training and inference commands. YOu need to prepare your dataset in yaml format:

# Train/val/test sets as 1) dir: path/to/imgs, 2) file: path/to/imgs.txt, or 3) list: [path/to/imgs1, path/to/imgs2, ..]
path: ../datasets/coco128  # dataset root dir
train: images/train2017  # train images (relative to 'path') 128 images
val: images/train2017  # val images (relative to 'path') 128 images
test:  # test images (optional)

# Classes (80 COCO classes)
names:
  0: person
  1: bicycle
  2: car
  ...
  77: teddy bear
  78: hair drier
  79: toothbrush

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants