├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── datasets.py ├── images └── sprite-results.png ├── main.py ├── model.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelzner/monet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelzner/monet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelzner/monet/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelzner/monet/HEAD/config.py -------------------------------------------------------------------------------- /datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelzner/monet/HEAD/datasets.py -------------------------------------------------------------------------------- /images/sprite-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelzner/monet/HEAD/images/sprite-results.png -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelzner/monet/HEAD/main.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stelzner/monet/HEAD/model.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torch>=1.0 2 | numpy 3 | 4 | visdom 5 | --------------------------------------------------------------------------------