Skip to content
This repository has been archived by the owner on Mar 28, 2022. It is now read-only.

Generate Tensorflow serving model for Iris dataset.

License

Notifications You must be signed in to change notification settings

serverlessf/tensorflow-iris

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Generate Tensorflow serving model for Iris dataset.

# build model
python3 dev.py

# deploy with tensorflow serving
docker pull tensorflow/serving
docker run -p 8501:8501 \
  --mount type=bind,source=$PWD,target=/models/model \
  -e MODEL_NAME=model -t tensorflow/serving

# host dataset as input service
python3 input.py

# use input service and model for inference
# <input address> <model address>
./inference.sh :1992 :8501

About

Generate Tensorflow serving model for Iris dataset.

Resources

License

Stars

Watchers

Forks