├── .gitignore ├── 1_activate_output.sh ├── 2_activate_output_placesCNN.sh ├── 3_start_from_real_image.sh ├── 4_activate_hidden.sh ├── 5_activate_output_GoogLeNet.sh ├── LICENSE ├── README.md ├── act_max.py ├── act_range ├── 1x │ ├── conv3.txt │ ├── conv5.txt │ ├── fc6.txt │ ├── fc7.txt │ ├── fc8.txt │ └── pool5.txt ├── 2x │ ├── conv3.txt │ ├── conv5.txt │ ├── fc6.txt │ ├── fc7.txt │ ├── fc8.txt │ └── pool5.txt ├── 3x │ ├── conv1.txt │ ├── conv2.txt │ ├── conv3.txt │ ├── conv4.txt │ ├── conv5.txt │ ├── fc6.txt │ ├── fc7.txt │ └── fc8.txt └── README.md ├── examples ├── example1.jpg ├── example2.jpg ├── example3.jpg ├── example4.jpg └── example5.jpg ├── ilsvrc_2012_mean.mat ├── images └── red_pepper.jpg ├── misc ├── categoryIndex_places205.txt └── synset_words.txt ├── nets ├── caffenet │ ├── caffenet.prototxt │ └── download.sh ├── googlenet │ ├── bvlc_googlenet_updated.prototxt │ └── download.sh ├── ilsvrc_2012_mean.mat ├── placesCNN │ ├── download.sh │ └── places205CNN_deploy_updated.prototxt └── upconv │ ├── README.md │ ├── download.sh │ ├── fc6 │ ├── generator.prototxt │ └── generator_160.prototxt │ ├── fc7 │ └── generator.prototxt │ └── pool5 │ └── generator.prototxt ├── patchShow.py └── settings.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/.gitignore -------------------------------------------------------------------------------- /1_activate_output.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/1_activate_output.sh -------------------------------------------------------------------------------- /2_activate_output_placesCNN.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/2_activate_output_placesCNN.sh -------------------------------------------------------------------------------- /3_start_from_real_image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/3_start_from_real_image.sh -------------------------------------------------------------------------------- /4_activate_hidden.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/4_activate_hidden.sh -------------------------------------------------------------------------------- /5_activate_output_GoogLeNet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/5_activate_output_GoogLeNet.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/README.md -------------------------------------------------------------------------------- /act_max.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_max.py -------------------------------------------------------------------------------- /act_range/1x/conv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/1x/conv3.txt -------------------------------------------------------------------------------- /act_range/1x/conv5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/1x/conv5.txt -------------------------------------------------------------------------------- /act_range/1x/fc6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/1x/fc6.txt -------------------------------------------------------------------------------- /act_range/1x/fc7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/1x/fc7.txt -------------------------------------------------------------------------------- /act_range/1x/fc8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/1x/fc8.txt -------------------------------------------------------------------------------- /act_range/1x/pool5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/1x/pool5.txt -------------------------------------------------------------------------------- /act_range/2x/conv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/2x/conv3.txt -------------------------------------------------------------------------------- /act_range/2x/conv5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/2x/conv5.txt -------------------------------------------------------------------------------- /act_range/2x/fc6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/2x/fc6.txt -------------------------------------------------------------------------------- /act_range/2x/fc7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/2x/fc7.txt -------------------------------------------------------------------------------- /act_range/2x/fc8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/2x/fc8.txt -------------------------------------------------------------------------------- /act_range/2x/pool5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/2x/pool5.txt -------------------------------------------------------------------------------- /act_range/3x/conv1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/3x/conv1.txt -------------------------------------------------------------------------------- /act_range/3x/conv2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/3x/conv2.txt -------------------------------------------------------------------------------- /act_range/3x/conv3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/3x/conv3.txt -------------------------------------------------------------------------------- /act_range/3x/conv4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/3x/conv4.txt -------------------------------------------------------------------------------- /act_range/3x/conv5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/3x/conv5.txt -------------------------------------------------------------------------------- /act_range/3x/fc6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/3x/fc6.txt -------------------------------------------------------------------------------- /act_range/3x/fc7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/3x/fc7.txt -------------------------------------------------------------------------------- /act_range/3x/fc8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/3x/fc8.txt -------------------------------------------------------------------------------- /act_range/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/act_range/README.md -------------------------------------------------------------------------------- /examples/example1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/examples/example1.jpg -------------------------------------------------------------------------------- /examples/example2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/examples/example2.jpg -------------------------------------------------------------------------------- /examples/example3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/examples/example3.jpg -------------------------------------------------------------------------------- /examples/example4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/examples/example4.jpg -------------------------------------------------------------------------------- /examples/example5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/examples/example5.jpg -------------------------------------------------------------------------------- /ilsvrc_2012_mean.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/ilsvrc_2012_mean.mat -------------------------------------------------------------------------------- /images/red_pepper.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/images/red_pepper.jpg -------------------------------------------------------------------------------- /misc/categoryIndex_places205.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/misc/categoryIndex_places205.txt -------------------------------------------------------------------------------- /misc/synset_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/misc/synset_words.txt -------------------------------------------------------------------------------- /nets/caffenet/caffenet.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/nets/caffenet/caffenet.prototxt -------------------------------------------------------------------------------- /nets/caffenet/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/nets/caffenet/download.sh -------------------------------------------------------------------------------- /nets/googlenet/bvlc_googlenet_updated.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/nets/googlenet/bvlc_googlenet_updated.prototxt -------------------------------------------------------------------------------- /nets/googlenet/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/nets/googlenet/download.sh -------------------------------------------------------------------------------- /nets/ilsvrc_2012_mean.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/nets/ilsvrc_2012_mean.mat -------------------------------------------------------------------------------- /nets/placesCNN/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/nets/placesCNN/download.sh -------------------------------------------------------------------------------- /nets/placesCNN/places205CNN_deploy_updated.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/nets/placesCNN/places205CNN_deploy_updated.prototxt -------------------------------------------------------------------------------- /nets/upconv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/nets/upconv/README.md -------------------------------------------------------------------------------- /nets/upconv/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/nets/upconv/download.sh -------------------------------------------------------------------------------- /nets/upconv/fc6/generator.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/nets/upconv/fc6/generator.prototxt -------------------------------------------------------------------------------- /nets/upconv/fc6/generator_160.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/nets/upconv/fc6/generator_160.prototxt -------------------------------------------------------------------------------- /nets/upconv/fc7/generator.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/nets/upconv/fc7/generator.prototxt -------------------------------------------------------------------------------- /nets/upconv/pool5/generator.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/nets/upconv/pool5/generator.prototxt -------------------------------------------------------------------------------- /patchShow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/patchShow.py -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Evolving-AI-Lab/synthesizing/HEAD/settings.py --------------------------------------------------------------------------------