diff --git a/README.rst b/README.rst index 3c16752..e9d90b3 100644 --- a/README.rst +++ b/README.rst @@ -12,6 +12,9 @@ Tensorflow Unet .. image:: https://img.shields.io/badge/ascl-1611.002-blue.svg?colorB=262255 :target: http://ascl.net/1611.002 +.. image:: https://mybinder.org/badge.svg + :target: https://mybinder.org/v2/gh/jakeret/tf_unet/binder?filepath=demo%2Fdemo_toy_problem.ipynb + This is a generic **U-Net** implementation as proposed by `Ronneberger et al. `_ developed with **Tensorflow**. The code has been developed and used for `Radio Frequency Interference mitigation using deep convolutional neural networks `_ . diff --git a/demo/README.rst b/demo/README.rst new file mode 100644 index 0000000..d91317c --- /dev/null +++ b/demo/README.rst @@ -0,0 +1,13 @@ +============================= +Tensorflow Unet demos +============================= + +.. image:: https://mybinder.org/badge.svg + :target: https://mybinder.org/v2/gh/jakeret/tf_unet/binder?filepath=demo%2Fdemo_toy_problem.ipynb + + + +Here you can find demo Jupyter notebooks for a `toy problem `_ or the `Radio Frequency Interference mitigation `_ discussed in our paper. + + +You can use the binder badge to start an interactive version of the toy problem without having to install anything on your machine. diff --git a/postBuild b/postBuild new file mode 100755 index 0000000..075c464 --- /dev/null +++ b/postBuild @@ -0,0 +1,4 @@ +#!/bin/bash + +# NOTE: this file needs to be executable in order to work. +python setup.py install diff --git a/requirements.txt b/requirements.txt index b5da9fa..f93a650 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,5 @@ click numpy Pillow -tensorflow>=1.0.0 \ No newline at end of file +tensorflow>=1.0.0 +matplotlib \ No newline at end of file