Deep Dreaming Fear & Loathing in Las Vegas: the Great San Francisco Acid Wave

Deep neural network hallucinating Fear & Loathing in Las Vegas: how meta is that? Visualizing the internals of a deep net we let it develop further what it think it sees. code: Another investigation of mainly landscapes: 2001: A Space Odyssey: We’re using the #deepdream technique developed by Google and others: & code: parameters used (and useful to play with): - network: standard reference GoogLeNet model trained on ImageNet from the Caffe Model Zoo () - iterations: 5 - jitter: 32 (default) - octaves: 4 (default) - layers locked to moving upwards from inception_4c/output to inception_5b/output (only the output layers, as they are most sensitive to visualizing “objects“, where reduce layers are more like “edge detectors“) and back again - every next unprocessed frame in the movie clip is blended with the previous processed frame before being “dreamed“ on, moving the alpha from 0.5 to 1 and back again (so 50% previous image net created, 50% the movie frame, to taking 100% of the movie frame only). This takes care of “overfitting“ on the frames and makes sure we don’t iteratively build more and more “hallucinations“ of the net and move away from the original movie clip.
Back to Top