An open API service indexing awesome lists of open source software.

https://github.com/codecentric/from-keras-to-production-baseimage

Base image for the workshop "From Keras TensorFlow-Models to production"
https://github.com/codecentric/from-keras-to-production-baseimage

Last synced: about 1 month ago
JSON representation

Base image for the workshop "From Keras TensorFlow-Models to production"

Awesome Lists containing this project

README

          

# From Keras TensorFlow-Models to production

## Jupyterlab starten
```bash
docker pull codecentric/from-keras-to-production-baseimage
```
## Run on Mac & Linux

```bash
docker run -p 8888:8888 -v $(pwd)/notebooks:/keras2production/notebooks codecentric/from-keras-to-production-baseimage
```

## Run on Windows

```bash
docker run -p 8888:8888 -v %cd%/notebooks:/keras2production/notebooks codecentric/from-keras-to-production-baseimage
```

## Build locally

```bash
cd /path/to/from-keras-to-production-baseimage
docker build -t keras_ws_py_base .
```