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?
I have written a simple example to train a Caffe model on the Iris data set in Python. It also gives the predicted outputs given some user-defined inputs. The network as well as the solver settings need some more tuning but I just wanted to have some code skeleton to get started. Feel free to edit to improve.
(GitHub repository)
iris_tuto.py
iris_train_test.prototxt
:iris_deploy.prototxt
:iris_solver.prototxt
:FYI: Script to install Caffe and pycaffe on Ubuntu.