Pular para o conteúdo principal

Postagens

Mostrando postagens com o rótulo dataset

Web app to easily collect images for your dataset

It is easy to train your neural network when you get data from the web. Datasets such as ImageNet and Mnist even have utility classes to load the data, such as MnistDataSetIterator from DeepLearning4J. The problem is when you have to collect the dataset yourself. There are many ways to do that, we can try to automatize how we collect the data, but then you may have a dataset that does not reflect the real world. Right now I have to collect images form real world. I can't take pictures from the internet, that are only a few and I can't take in my house or important features won't be learned. So I created a small web application which I think that may be useful for others trying to create their own dataset. The idea is simple: You set the output directory and the possible labels in pom.xml; Then you start the application and start taking pictures with your mobile; The application then saves the images using the label as the parent directory When training yo...