Difference between revisions of "Deep Dream"

From Interaction Station Wiki
Jump to navigation Jump to search
(Created page with "*https://pjreddie.com/darknet/nightmare/")
 
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
== Working with Ubuntu 16.04 & Darknet
 
*https://pjreddie.com/darknet/nightmare/
 
*https://pjreddie.com/darknet/nightmare/
 +
 +
=== Single Image ===
 +
cd darknet
 +
./darknet nightmare cfg/vgg-conv.cfg vgg-conv.weights data/eagle.jpg 13
 +
 +
 +
=== Sequence of Images for video generation ===
 +
*Adding parameter-zoom (close to 1 for zooming in, close to 0 for zooming out)
 +
cd darknet
 +
./darknet nightmare cfg/vgg-conv.cfg vgg-conv.weights data/eagle.jpg 13 -rounds 30 -zoom 0.9
 +
 +
[[Category:Convolutional Neural Networks‎]]

Latest revision as of 14:31, 28 November 2022

== Working with Ubuntu 16.04 & Darknet

Single Image

cd darknet
./darknet nightmare cfg/vgg-conv.cfg vgg-conv.weights data/eagle.jpg 13


Sequence of Images for video generation

  • Adding parameter-zoom (close to 1 for zooming in, close to 0 for zooming out)
cd darknet
./darknet nightmare cfg/vgg-conv.cfg vgg-conv.weights data/eagle.jpg 13 -rounds 30 -zoom 0.9