This is an automated email from the ASF dual-hosted git repository.
rabbah pushed a change to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-openwhisk-runtime-python.git.
from cee010a Switch to Scala 2.12.7 (#42)
add 0264051 Added an AI Action extending Tensorflow
add a0e61db added newline at the end of file
add fd476c3 Merge branch 'master' into python3-ai
add 5041c05 Merge branch 'python3-ai' of
github.com:ddragosd/incubator-openwhisk-runtime-python into python3-ai
add 28a4dfb added a test for tensorflow
add c33553f fixed formatting
add dc8225a added a test for pytorch and numpy
add 5eaf3f5 added docs
add 4572abe added licence header for README
add b5e672a added natural language toolkit
add f63b309 updated to tensorflow 1.11.0
add 1484a14 created a sample notebook, and code review updates
add f6ce019 Merge branch 'master' into python3-ai
add f05ada7 Merge branch 'python3-ai' of
github.com:ddragosd/incubator-openwhisk-runtime-python into python3-ai
add 5c4547c forgot to format files. thanks travis
new 6558390 Adds a new AI Action kind
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.travis.yml | 2 +-
README.md | 3 +
core/python3AiAction/Dockerfile | 61 ++
core/python3AiAction/README.md | 85 ++
.../{pythonAction => python3AiAction}/build.gradle | 2 +-
core/python3AiAction/requirements.txt | 27 +
.../samples/smart-body-crop/.gitignore | 5 +
.../samples/smart-body-crop/common.py | 332 ++++++++
.../samples/smart-body-crop/crop.ipynb | 872 +++++++++++++++++++++
.../samples/smart-body-crop/fashion-men-1.jpg | Bin 0 -> 2471074 bytes
.../samples/smart-body-crop/inference.py | 246 ++++++
settings.gradle | 1 +
.../Python3AiActionContainerTests.scala | 94 +++
.../PythonActionContainerTests.scala | 8 +-
tools/travis/publish.sh | 2 +
15 files changed, 1735 insertions(+), 5 deletions(-)
create mode 100644 core/python3AiAction/Dockerfile
create mode 100644 core/python3AiAction/README.md
copy core/{pythonAction => python3AiAction}/build.gradle (95%)
create mode 100644 core/python3AiAction/requirements.txt
create mode 100644 core/python3AiAction/samples/smart-body-crop/.gitignore
create mode 100644 core/python3AiAction/samples/smart-body-crop/common.py
create mode 100644 core/python3AiAction/samples/smart-body-crop/crop.ipynb
create mode 100644
core/python3AiAction/samples/smart-body-crop/fashion-men-1.jpg
create mode 100644 core/python3AiAction/samples/smart-body-crop/inference.py
create mode 100644
tests/src/test/scala/runtime/actionContainers/Python3AiActionContainerTests.scala