-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
Could u please give the training steps on my own datasets? #7
Comments
I'll be adding custom dataset support soon. I'm currently travelling so I can't do it right now, but I'll follow up when I can. |
Need the training steps on my own datasets too. |
I also need the training steps on my own datasets. |
So uh that turned out to be a lot longer than "soon", but I finally added support for custom datasets (latest commit). I've updated the readme with directions, but I'll paste them here for convenience:
my_custom_dataset = dataset_base.copy({
'name': 'My Dataset',
'train_images': 'path_to_training_images',
'train_info': 'path_to_training_annotation',
'valid_images': 'path_to_validation_images',
'valid_info': 'path_to_validation_annotation',
'has_gt': True,
'class_names': ('my_class_id_1', 'my_class_id_2', 'my_class_id_3', ...)
})
Note that I haven't done a lot of testing with this, so I might have broken some things. Let me know if you have any issues with this and I'll get back to you within my stellar, industry-leading 19 day response window. |
Dear sir:
I'm really interested in your fantastic work,
Could u please give the training steps on my own datasets?
Thanks a lot!~
The text was updated successfully, but these errors were encountered: