Instead of creating all these different files and file names manually, I thought of creating a class that contains all the information regarding the neural net, including:
- Name.
- Folder to save the learned specifics.
- Architecture (according to LRP Toolbox).
Template:
classdef NeuralNet
properties
Name
Folder
Architecture
end
methods
"some methods to load, save and analyse the NeuralNet"
end
end