-
-
Notifications
You must be signed in to change notification settings - Fork 183
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
How to Train only One Class? #267
Comments
In your example you still have two classes. "Contains pigeon", "Doesn't contain pigeon". You'd label your dataset as such. |
|
Hey thanks @takielias I'm just reading this now! It sounds like you want image segmentation? In other words, you want the model to draw a bounding box around the pigeons in an image? If so, then what you need is a multimodal (classifier + regressor) model that A. predicts the class of what's in the image and B. draws a bounding box around the object (usually this is done by predicting the top left and bottom right coordinates). Unfortunately, Rubix ML does not offer multimodal prediction at the moment. Thanks for your kind words, I appreciate your support. |
Yes, exactly. Waiting for the multi-model support of RubixML.
…On Sun, May 28, 2023, 2:23 AM Andrew DalPino ***@***.***> wrote:
Hey thanks @takielias <https://github.com/takielias> I'm just reading
this now! It sounds like you want image segmentation? In other words, you
want the model to draw a bounding box around the pigeons in an image? If
so, then what you need is a multimodal (classifier + regressor) model that
A. predicts the class of what's in the image and B. draws a bounding box
around the object (usually this is done by predicting the top left and
bottom right coordinates).
Unfortunately, Rubix ML does not offer multimodal prediction at the moment.
Thanks for your kind words, I appreciate your support.
—
Reply to this email directly, view it on GitHub
<#267 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AJJBAZEAPHDANLDBW7A7QHTXIJPC5ANCNFSM6AAAAAASETLKF4>
.
You are receiving this because you were mentioned.Message ID:
***@***.***>
|
@andrewdalpino Thanks for your incredible creation. As A PHP lover, I have been expecting this type of project for a long time.
Though I'm new to ML, I need to train in only one label. I got the CIFAR-10 or the MNIST example. But I could not manage it. It's required multiple labels. How can I do it? Like I need to detect only pigeons in the image.
The text was updated successfully, but these errors were encountered: