├── LICENSE ├── README.md ├── coral.py ├── examples └── gilbert.gif ├── inference.py ├── model.py ├── models └── download_models.sh ├── ops.py ├── stylize.py ├── train.py ├── utils.py ├── vgg_normalised.py └── webcam.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eridgd/AdaIN-TF/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eridgd/AdaIN-TF/HEAD/README.md -------------------------------------------------------------------------------- /coral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eridgd/AdaIN-TF/HEAD/coral.py -------------------------------------------------------------------------------- /examples/gilbert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eridgd/AdaIN-TF/HEAD/examples/gilbert.gif -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eridgd/AdaIN-TF/HEAD/inference.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eridgd/AdaIN-TF/HEAD/model.py -------------------------------------------------------------------------------- /models/download_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eridgd/AdaIN-TF/HEAD/models/download_models.sh -------------------------------------------------------------------------------- /ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eridgd/AdaIN-TF/HEAD/ops.py -------------------------------------------------------------------------------- /stylize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eridgd/AdaIN-TF/HEAD/stylize.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eridgd/AdaIN-TF/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eridgd/AdaIN-TF/HEAD/utils.py -------------------------------------------------------------------------------- /vgg_normalised.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eridgd/AdaIN-TF/HEAD/vgg_normalised.py -------------------------------------------------------------------------------- /webcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eridgd/AdaIN-TF/HEAD/webcam.py --------------------------------------------------------------------------------