Skip to content

Commit

Permalink
Improve version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
keisen committed May 7, 2020
1 parent 4dac048 commit ca6fb82
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ And then we will add some algorisms such as below.

## Requirements

* Python 3.5, 3.6 or 3.8
* Python 3.5, 3.6, 3.7 or 3.8
* tensorflow>=2.0.0


Expand All @@ -36,7 +36,7 @@ $ pip install tf-keras-vis tensorflow
* Docker

```bash
$ docker pull keisen/tf-keras-vis:0.2.0
$ docker pull keisen/tf-keras-vis:0.3.0
```

> You can find other images (that's nvidia-docker images) at [dockerhub](https://hub.docker.com/repository/docker/keisen/tf-keras-vis/tags).
Expand All @@ -50,13 +50,13 @@ Please see [examples/attentions.ipynb](https://github.com/keisen/tf-keras-vis/bl
* Run Jupyter notebooks on Docker

```bash
$ docker run -itd -v /PATH/TO/tf-keras-vis:/tf-keras-vis -p 8888:8888 keisen/tf-keras-vis:0.2.0
$ docker run -itd -v /PATH/TO/tf-keras-vis:/tf-keras-vis -p 8888:8888 keisen/tf-keras-vis:0.3.0
```

Or, if you have GPU processors,

```bash
$ docker run -itd --runtime=nvidia -v /PATH/TO/tf-keras-vis:/tf-keras-vis -p 8888:8888 keisen/tf-keras-vis:0.2.0-gpu
$ docker run -itd --runtime=nvidia -v /PATH/TO/tf-keras-vis:/tf-keras-vis -p 8888:8888 keisen/tf-keras-vis:0.3.0-gpu
```


Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/cpu.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM tensorflow/tensorflow:2.2.0-py3

# Default ENV Settings
ARG TF_KERAS_VIS_VERSION=0.2.3
ARG TF_KERAS_VIS_VERSION=0.3.0
ARG JUPYTER_ALLOW_IP="0.0.0.0"
ARG JUPYTER_TOKEN=""

Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/gpu.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM tensorflow/tensorflow:2.2.0-gpu-py3

# Default ENV Settings
ARG TF_KERAS_VIS_VERSION=0.2.3
ARG TF_KERAS_VIS_VERSION=0.3.0
ARG JUPYTER_ALLOW_IP="0.0.0.0"
ARG JUPYTER_TOKEN=""

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="tf-keras-vis",
version="0.2.3",
version="0.3.0",
author="keisen",
author_email="[email protected]",
description="Neural network visualization toolkit for tf.keras",
Expand Down

0 comments on commit ca6fb82

Please sign in to comment.