All Projects → VikramTiwari → tensorflow-retrain-sample

VikramTiwari / tensorflow-retrain-sample

Licence: other
A sample for tensorflow retraining

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to tensorflow-retrain-sample

Nearest-Celebrity-Face
Tensorflow Implementation of FaceNet: A Unified Embedding for Face Recognition and Clustering to find the celebrity whose face matches the closest to yours.
Stars: ✭ 30 (+20%)
Mutual labels:  machinelearning, inception
mxnet-retrain
Create mxnet finetuner (retrain) for mac/linux ,no need install docker and supports CPU, GPU(eGpu/cudnn).support the inception,resnet ,squeeznet,mobilenet...
Stars: ✭ 32 (+28%)
Mutual labels:  inception, retrain
AutoForce
Sparse Gaussian Process Potentials
Stars: ✭ 17 (-32%)
Mutual labels:  machinelearning
Alzheimers Diagnosis StageDetermination
E6893 Final Project for ja3130, mn2769, and hz2441 (Project ID: 201712-18)
Stars: ✭ 21 (-16%)
Mutual labels:  machinelearning
metrics
IS, FID score Pytorch and TF implementation, TF implementation is a wrapper of the official ones.
Stars: ✭ 91 (+264%)
Mutual labels:  inception
politic-bots
Tools and algorithms to analyze Paraguayan Tweets in times of elections
Stars: ✭ 26 (+4%)
Mutual labels:  machinelearning
GeneticAlgorithmForFeatureSelection
Search the best feature subset for you classification mode
Stars: ✭ 82 (+228%)
Mutual labels:  machinelearning
forestError
A Unified Framework for Random Forest Prediction Error Estimation
Stars: ✭ 23 (-8%)
Mutual labels:  machinelearning
i3d-tensorflow
Inflated 3D ConvNets for video understanding
Stars: ✭ 46 (+84%)
Mutual labels:  inception
barrage
Barrage is an opinionated supervised deep learning tool built on top of TensorFlow 2.x designed to standardize and orchestrate the training and scoring of complicated models.
Stars: ✭ 16 (-36%)
Mutual labels:  machinelearning
IncetOps
基于Inception,一个审计、执行、回滚、统计sql的开源系统
Stars: ✭ 46 (+84%)
Mutual labels:  inception
aws-mlu-explain
Visual, Interactive Articles About Machine Learning: https://mlu-explain.github.io/
Stars: ✭ 46 (+84%)
Mutual labels:  machinelearning
Data-Science-and-Machine-Learning-Resources
List of Data Science and Machine Learning Resource that I frequently use
Stars: ✭ 19 (-24%)
Mutual labels:  machinelearning
python
Python codes from tutorials on the Data Professor YouTube channel
Stars: ✭ 51 (+104%)
Mutual labels:  machinelearning
MACHINE-LEARNING-LABORATORY
ML LAB PROGRAMS FOR SCHEMES +2015 +2017 +2018
Stars: ✭ 15 (-40%)
Mutual labels:  machinelearning
nami-apple
Easy Apple subscriptions & in-app purchases, powered by on-device machine learning to grow your revenue. The smartest way to sell subscriptions.
Stars: ✭ 34 (+36%)
Mutual labels:  machinelearning
VoiceNET.Library
.NET library to easily create Voice Command Control feature.
Stars: ✭ 14 (-44%)
Mutual labels:  machinelearning
acl2020-interactive-entity-linking
No description or website provided.
Stars: ✭ 26 (+4%)
Mutual labels:  inception
Study-Notes
算法、编程学习笔记
Stars: ✭ 36 (+44%)
Mutual labels:  machinelearning
DeepDream
Generative deep learning: DeepDream
Stars: ✭ 17 (-32%)
Mutual labels:  inception

Tensorflow Retrain

About

This is an example on how to use pre-existing TensorFlow models to retrain on your data. In this example, we use Inception which is an image classifier. You can train it on the existing images of different noodles type and then use images in the test directory to get the predictions.

Setup

  • Install TensorFlow
  • Put directories with images in categories directory. The name of the directories will be the classifications

Training

python retrain.py \
  --bottleneck_dir=bottlenecks \
  --how_many_training_steps=500 \
  --model_dir=inception \
  --summaries_dir=training_summaries/basic \
  --output_graph=retrained_graph.pb \
  --output_labels=retrained_labels.txt \
  --image_dir=categories

Predicting

python label_image.py <insert_file_path_to_predict_here>

Visualize

See the model and progress in TensorBoard

tensorboard --logdir training_summaries

Demo

Credits

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].