The minimal TensorFlow application for benchmarking.
./tensorflow_model_server --port=9000 --model_name=minimal --model_base_path=./model
./predict_client.py --host 127.0.0.1 --port 9000 --model_name minial --model_version 1
cloudml models predict -n minial -s 127.0.0.1:9000 -f ./data.json
./benchmark_predict.py --benchmark_test_number 10 --benchmark_batch_size 1
./benchmark_predict_client.py --host 127.0.0.1 --port 9000 --model_name minial --model_version 1 --benchmark_batch_size 100 --benchmark_test_number 10000