-
Notifications
You must be signed in to change notification settings - Fork 59
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
Create dataset from scratch #1
Comments
Thank you @kYroL01 Actually it's the reason why I created ImageFlow which is to make you enable to work with your very own data. It was the problem in my case and I built this solution (not fully complete as I wanted) and decided to publish it. For example we have used this library for a Car Detector problem which was fully personal dataset and problem. I would be happy if you explain more what it lacks which make it difficult for your dataset? |
Thanks for the fast reply. I also read this but not the 100 % of what I need. Suggestion ? I hope I was clear. Thanks |
Your categories are your LABELS. As CNN is supervised learning, you should provide it with labels to make it able to learn its errors and improve it. So if you have 3 categories, you should give the labels e.g 1, 2, 3 or A, B, C , ... to them and convert them tfrecords if you want to enjoy queueing features. |
Yes of course, I understand that my categories are the labels. |
It can be done in a simple programming level job. For example you will read images full path and put it into the images_array You can do this in python by getting the full path of the images, then separate it by '/' and access to the returned_array[-2] element which will be the folder name. '-1' will be the file name. |
Ok, I'll try. I think I understand. Thank you for the suggestion and for the time spent. |
First of all, thank you @HamedMP for the huge work.
In my opinion, to extend ImageFlow functionalities, a nice feature to add is giving the possibility to create a new dataset from scratch.
It could be very usefull to anyone who needs to create his personal cnn for image recognition not base on pre-built dataset (i.e. Cifar, MNIST or Imagenet).
What do you think ?
The text was updated successfully, but these errors were encountered: