working in progress
ImageGAN only.
- https://github.com/phillipi/pix2pix
- https://github.com/affinelayer/pix2pix-tensorflow
- https://github.com/costapt/vess2ret
- https://github.com/makora9143/pix2pix-keras-tensorflow
- https://github.com/tdeboissiere/DeepLearningImplementations/tree/master/pix2pix
- https://github.com/jocicmarko/ultrasound-nerve-segmentation/
git clone --recursive https://github.com/legokichi/keras-pix2pix.git
pyenv shell anaconda3-4.1.1
sudo apt-get install graphviz
conda install theano pygpu
pip install tensorflow-gpu
pip install keras
pip install mypy
pip install pydot_ng
mypy --ignore-missing-imports train.py
env CUDA_VISIBLE_DEVICES=0 python train.py --lr=0.0001 --dice_coef
env CUDA_VISIBLE_DEVICES=1 python train.py --lr=0.0001 --dice_coef --data_aug
pip install gunicorn flask
gunicorn -w 4 -b 0.0.0.0:8888 server:app
env FLASK_APP=server.py flask run --host=0.0.0.0 --port 8888