MNIST Amendments

MNIST takes a series of hand written letters and tries to make sense of them as a neural network.

What if I only have two types of images, a plain slab of concrete and a car sitting on the concrete.

Can I amend MNIST to just use two picture types?

JMN

I am not sure if we are the best to help you, since this does not seem to be a Fortran specific question rather a question about the app itself (?) I believe(?) you can read here on someone having a problem with the same code you’re trying to use.

Welcome to the forum! hopefully someone can help you, sorry that I don’t know about this much

Thanks for the reply. It will take a bit of digging, but it should be possible.

Yes, you can train on a subset of digits from MNIST to predict only between two digits (3 and 7, for example). There is nothing special about there being 10 digits in the set. But you’d need to exclude images of other digits from the data.

Likewise for car/no car prediction. Any image dataset can have any number of labels (output kinds), it’s up to you and your application.

1 Like

Yes, I was thinking along those lines. I will have to write some more code to create the dat files.

Thanks