I use the follwoing code to load the net and set up it, the parameters of layers are stored in deploy.prototxt
.
net = caffe.Net(deploy.prototxt, caffemodel, caffe.TEST)
However, what I want to do is to modify the parameters (e.g. kernel_size
, or pad
, etc.) of layers dynamically instead of modifying the prototxt file and reload it.
Is there any way to do so?