Skip to content
Snippets Groups Projects
Commit 5eaf3f56 authored by Dragos Dascalita Haut's avatar Dragos Dascalita Haut
Browse files

added docs

parent dc8225ae
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,9 @@ wsk action update myAction myAction.py --kind python:3
Replace `python:3` with `python:2` to use python 2.
### Python 3 AI Action
This action enables developers to create AI Services with OpenWhisk. It comes with preinstalled libraries useful for running machine learning and deep learning inferences. See more about [python3aiaction](./core/python3AiAction).
### Local development
```
./gradlew core:pythonAction:distDocker
......
# AI Action
This image contains libraries and frameworks useful for running AI Services.
Bellow are the versions for the included libraries:
| Image Version | Package | Notes |
| ---------- | -------- | ------ |
| 1.1.0 | Tensorflow 1.10.1, PyTorch 0.4.1 | Based on Ubuntu 16.04.5, Python 3.5.2.
### 1.1.0 Details
#### Available python packages
| Package | Version |
| --------------------- | --------------------- |
| tensorboard | 1.10.0 |
| tensorflow | 1.10.1 |
| torch | 0.4.1 |
| torchvision | 0.2.1 |
| scikit-learn | 0.19.2 |
| scipy | 1.1.0 |
| sklearn | 0.0 |
| numpy | 1.14.5 |
| pandas | 0.23.4 |
| Pillow | 5.2.0 |
| Cython | 0.28.5 |
| ipykernel | 4.8.2 |
| ipython | 6.5.0 |
| ipywidgets | 7.4.0 |
| jupyter | 1.0.0 |
| jupyter-client | 5.2.3 |
| jupyter-console | 5.2.0 |
| jupyter-core | 4.4.0 |
| Keras | 2.2.2 |
| Keras-Applications | 1.0.4 |
| Keras-Preprocessing | 1.0.2 |
| matplotlib | 2.2.3 |
| notebook | 5.6.0 |
| opencv-contrib-python | 3.4.2.17 |
| protobuf | 3.6.1 |
For a complete list execute:
```bash
$ docker run --rm --entrypoint pip openwhisk/python3aiaction list
```
#### Available Ubuntu packages
For a complete list execute:
```bash
$ docker run --rm --entrypoint apt openwhisk/python3aiaction list --installed
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment