Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Image recognition using TensorFlow [closed]

I'm new to TensorFlow and I am looking for help on image recognition. Is there an example that showcases how to use TensorFlow to train your own digital images for image recognition like the image-net model used in the TensorFlow image recognition tutorial

I looked at the CIFAR-10 model training but it doesn't seem to provide examples for training your own images.

like image 691
Philip Adzanoukpe Avatar asked Jan 09 '16 14:01

Philip Adzanoukpe


1 Answers

This repo gives final layer image retraining for your own images.

Add your images to the training_"dataset folder"

Add more and more images(atleast 30 images for each class required.)

First execute the bash script to download the Imagenet files.

Next, run the python script to retrain your images which outputs validation accuracy etc.,

https://github.com/shivakrishna9/tensorflow-retrain

like image 116
shivakrishna9 Avatar answered Sep 27 '22 20:09

shivakrishna9