I want to update a convolutional filter using matlab in Caffe. How can I do it? so far my code is:
caffe.reset_all(); % reset caffe
caffe.set_mode_gpu();
gpu_id = 0; % we will use the first gpu in this demo
caffe.set_device(gpu_id);
net_model = [model_dir, 'train_images.prototxt'];
net = caffe.Net(net_model, 'train');
net.blobs('conv1').set_data([1,1,0]);