All Projects → tobegit3hub → Deep_image_model

tobegit3hub / Deep_image_model

Licence: apache-2.0
Deep convolution/recurrent neural network project with TensorFlow

Programming Languages

python
139335 projects - #7 most used programming language

Deep CNN and RNN

The classic deep convolution and recurrent neural network project with TensorFlow. You can learn and run CNN easily.

  • Train/test/inference images included.
  • Visualize images with matplotlib.
  • Support checkpoint and tensorboard.
  • Easy to extend more convolution layers.
  • Support CNN, LSTM, Bicondictional LSTM and Stacked LSTM.

Train

./pokemon_classifer.py --epoch_number 100

Inference

./pokemon_classifer.py --mode inference --image ./data/inference/Pikachu.png

Export model

./pokemon_classifer.py --epoch_number 0

Run TensorFlow serving

./tensorflow_model_server --port=9000 --model_name=deep_cnn --model_base_path=./model

Run gRPC client

./predict_client.py --host 127.0.0.1 --port 9000 --model_name deep_cnn --model_version 1

Notice that cloudml is not released now.

cloudml models predict -n deep_cnn -s 127.0.0.1:9000 -f ./data.json
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].