MenorcanOrange
MenorcanOrange

Reputation: 2825

CNN classifier on dataset with one random class

I am trying to build a CNN classifier using keras to classify if the image is monkey or not. So I have two categories. One with monkey pictures. The other category is a random collection of pictures which is basically any picture that doesn't contain a monkey in it. Is appropriate to have a dataset with one class that is random and the other class with a specific label (rather than having 2 specific classes like cats and dogs)? will a CNN work for this kind of problem?

Thanks!

Upvotes: 2

Views: 596

Answers (1)

Madhi
Madhi

Reputation: 1236

yes .. CNN will work either you have one label set or many . If you need more details refer this link. This will save your day ..

https://www.pyimagesearch.com/2017/12/11/image-classification-with-keras-and-deep-learning/

Upvotes: 4

Related Questions