├── Dockerfile ├── README.md ├── docker-compose.yml ├── function ├── handler.py └── requirements.txt ├── images ├── cat.jpg ├── elephant.jpg └── lion-wild-africa-african.jpg ├── index.py ├── requirements.txt ├── tensorflow.yml └── test.sh /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmkhael/faas-tensorflow/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmkhael/faas-tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmkhael/faas-tensorflow/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /function/handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmkhael/faas-tensorflow/HEAD/function/handler.py -------------------------------------------------------------------------------- /function/requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /images/cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmkhael/faas-tensorflow/HEAD/images/cat.jpg -------------------------------------------------------------------------------- /images/elephant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmkhael/faas-tensorflow/HEAD/images/elephant.jpg -------------------------------------------------------------------------------- /images/lion-wild-africa-african.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmkhael/faas-tensorflow/HEAD/images/lion-wild-africa-african.jpg -------------------------------------------------------------------------------- /index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmkhael/faas-tensorflow/HEAD/index.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tensorflow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmkhael/faas-tensorflow/HEAD/tensorflow.yml -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmkhael/faas-tensorflow/HEAD/test.sh --------------------------------------------------------------------------------