├── .gitignore ├── DataLoader.py ├── LICENSE ├── README.md ├── SynthesisNetwork.py ├── __init__.py ├── app.py ├── config ├── GlobalVariables.py └── __init__.py ├── convenience.py ├── example_outputs ├── grid_ysun.jpeg ├── interpolate_abcde.gif ├── interpolate_writer.gif ├── mdn_sample.gif └── online_demo.gif ├── helper.py ├── interpolation.py ├── main.py ├── requirements.txt ├── sample.gif ├── sample.py └── samples ├── 20.png ├── 25.png └── original.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/.gitignore -------------------------------------------------------------------------------- /DataLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/DataLoader.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/README.md -------------------------------------------------------------------------------- /SynthesisNetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/SynthesisNetwork.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/app.py -------------------------------------------------------------------------------- /config/GlobalVariables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/config/GlobalVariables.py -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /convenience.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/convenience.py -------------------------------------------------------------------------------- /example_outputs/grid_ysun.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/example_outputs/grid_ysun.jpeg -------------------------------------------------------------------------------- /example_outputs/interpolate_abcde.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/example_outputs/interpolate_abcde.gif -------------------------------------------------------------------------------- /example_outputs/interpolate_writer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/example_outputs/interpolate_writer.gif -------------------------------------------------------------------------------- /example_outputs/mdn_sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/example_outputs/mdn_sample.gif -------------------------------------------------------------------------------- /example_outputs/online_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/example_outputs/online_demo.gif -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/helper.py -------------------------------------------------------------------------------- /interpolation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/interpolation.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/sample.gif -------------------------------------------------------------------------------- /sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/sample.py -------------------------------------------------------------------------------- /samples/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/samples/20.png -------------------------------------------------------------------------------- /samples/25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/samples/25.png -------------------------------------------------------------------------------- /samples/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brownvc/decoupled-style-descriptors/HEAD/samples/original.png --------------------------------------------------------------------------------