├── .gitignore ├── LICENSE ├── README.md ├── analyze_model.lua ├── lua_modules ├── InstanceNormalization.lua └── TVLoss.lua ├── model ├── checkpoint ├── texture_net.chkp.data-00000-of-00001 ├── texture_net.chkp.index └── texture_net.chkp.meta ├── pics ├── example.jpg ├── example_tensorflow.jpg └── example_torch.jpg ├── stylize_tensorflow.py ├── stylize_tensorflow_graph.py ├── stylize_torch_weights.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | tb/ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgyg-jegli/tf_texture_net/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgyg-jegli/tf_texture_net/HEAD/README.md -------------------------------------------------------------------------------- /analyze_model.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgyg-jegli/tf_texture_net/HEAD/analyze_model.lua -------------------------------------------------------------------------------- /lua_modules/InstanceNormalization.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgyg-jegli/tf_texture_net/HEAD/lua_modules/InstanceNormalization.lua -------------------------------------------------------------------------------- /lua_modules/TVLoss.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgyg-jegli/tf_texture_net/HEAD/lua_modules/TVLoss.lua -------------------------------------------------------------------------------- /model/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgyg-jegli/tf_texture_net/HEAD/model/checkpoint -------------------------------------------------------------------------------- /model/texture_net.chkp.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgyg-jegli/tf_texture_net/HEAD/model/texture_net.chkp.data-00000-of-00001 -------------------------------------------------------------------------------- /model/texture_net.chkp.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgyg-jegli/tf_texture_net/HEAD/model/texture_net.chkp.index -------------------------------------------------------------------------------- /model/texture_net.chkp.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgyg-jegli/tf_texture_net/HEAD/model/texture_net.chkp.meta -------------------------------------------------------------------------------- /pics/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgyg-jegli/tf_texture_net/HEAD/pics/example.jpg -------------------------------------------------------------------------------- /pics/example_tensorflow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgyg-jegli/tf_texture_net/HEAD/pics/example_tensorflow.jpg -------------------------------------------------------------------------------- /pics/example_torch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgyg-jegli/tf_texture_net/HEAD/pics/example_torch.jpg -------------------------------------------------------------------------------- /stylize_tensorflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgyg-jegli/tf_texture_net/HEAD/stylize_tensorflow.py -------------------------------------------------------------------------------- /stylize_tensorflow_graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgyg-jegli/tf_texture_net/HEAD/stylize_tensorflow_graph.py -------------------------------------------------------------------------------- /stylize_torch_weights.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgyg-jegli/tf_texture_net/HEAD/stylize_torch_weights.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgyg-jegli/tf_texture_net/HEAD/utils.py --------------------------------------------------------------------------------