I'm trying to train a model completely in python (the training process is interactive enough to justify this I think), but the only way I've seen to get a network into python is by calling:
caffe.Net(model_def_file, pretrained_model)
But this presumes you already have a model to work with. Is there a way to create a new model in python? Or if not, is there an easy way to create a model file without training it on anything (to use it as the pretrained_model argument)?
I hope this isn't a silly question; I've tried figuring it out myself, but the document for the python wrapper is pretty sparse.