deep-dream

How to train a caffe model?

自作多情 提交于 2019-12-20 10:37:54
问题 Has anyone successfully trained a caffe model? I have a training ready image set that I would like to use to create a caffe model for use with Google's Deep Dream. The only resources I've been able to find on how to train a model are these: ImageNet Tutorial EDIT: Here's another, but it's not creating a deploy.prototxt file. When I try to use one from another model it "works" but isn't correct. caffe-oxford 102 Can anyone point me in the right direction to training my own model? 回答1: I have

How to use classes to “control dreams”?

你。 提交于 2019-12-03 03:27:19
问题 Background I've been playing around with Deep Dream and Inceptionism , using the Caffe framework to visualize layers of GoogLeNet , an architecture built for the Imagenet project, a large visual database designed for use in visual object recognition. Imagenet can be found here: Imagenet 1000 Classes. In order to probe into the architecture and generate 'dreams', I am using three notebooks: https://github.com/google/deepdream/blob/master/dream.ipynb https://github.com/kylemcdonald/deepdream

How to train a caffe model?

二次信任 提交于 2019-12-02 23:33:15
Has anyone successfully trained a caffe model? I have a training ready image set that I would like to use to create a caffe model for use with Google's Deep Dream. The only resources I've been able to find on how to train a model are these: ImageNet Tutorial EDIT: Here's another, but it's not creating a deploy.prototxt file. When I try to use one from another model it "works" but isn't correct. caffe-oxford 102 Can anyone point me in the right direction to training my own model? Franck Dernoncourt I have written a simple example to train a Caffe model on the Iris data set in Python. It also

How to use classes to “control dreams”?

拥有回忆 提交于 2019-12-02 16:56:21
Background I've been playing around with Deep Dream and Inceptionism , using the Caffe framework to visualize layers of GoogLeNet , an architecture built for the Imagenet project, a large visual database designed for use in visual object recognition. Imagenet can be found here: Imagenet 1000 Classes. In order to probe into the architecture and generate 'dreams', I am using three notebooks: https://github.com/google/deepdream/blob/master/dream.ipynb https://github.com/kylemcdonald/deepdream/blob/master/dream.ipynb https://github.com/auduno/deepdraw/blob/master/deepdraw.ipynb The basic idea here

Google Deep Dream art: how to pick a layer in a neural network and enhance it

狂风中的少年 提交于 2019-11-29 14:25:05
问题 I am interested in a recent blog post by Google that describes the use of nn to make art. I am particularly interested in one technique: 'In this case we simply feed the network an arbitrary image or photo and let the network analyze the picture. We then pick a layer and ask the network to enhance whatever it detected. Each layer of the network deals with features at a different level of abstraction, so the complexity of features we generate depends on which layer we choose to enhance. For

No module named google.protobuf

不羁岁月 提交于 2019-11-28 09:01:49
I am trying to run Google's deep dream. For some odd reason I keep getting ImportError: No module named google.protobuf after trying to import protobuf. I have installed protobuf using sudo install protobuf . I am running python 2.7 OSX Yosemite 10.10.3. I think it may be a deployment location issue but i cant find anything on the web about it. Currently deploying to /usr/local/lib/python2.7/site-packages. Panfeng Li There is another possibility, if you are running a python 2.7.11 or other similar versions, sudo pip install protobuf is ok. But if you are in a anaconda environment, you should

No module named google.protobuf

时间秒杀一切 提交于 2019-11-27 02:34:50
问题 I am trying to run Google's deep dream. For some odd reason I keep getting ImportError: No module named google.protobuf after trying to import protobuf. I have installed protobuf using sudo install protobuf . I am running python 2.7 OSX Yosemite 10.10.3. I think it may be a deployment location issue but i cant find anything on the web about it. Currently deploying to /usr/local/lib/python2.7/site-packages. 回答1: There is another possibility, if you are running a python 2.7.11 or other similar