I am new to DL. I am working in Matlab. I do not have a GPU in my laptop.
I have a model which has three files; deploy.prototxt, solver.prototxt and train_val.prototxt.
I wish to use the interface with deploy.prototxt in malab. Is there a way to convert it into deploy.mat file, so that I can work as
cnnMatFile=deploy.mat;
convnet = helperImportMatConvNet(cnnMatFile)
and
trainingFeatures = activations(convnet, trainingSet, featureLayer, ...
'MiniBatchSize', 4, 'OutputAs', 'columns')