Preserve network metadata in save() and load() #17
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Hello Milan,
The save and load functions should now also load the metadata. I was not sure what to do about the first layer, is it always supposed to have a sigmoid function? I made the function simply save and load all layers.
I took the freedom to change the
set_activationfunction of thelayer_typeto an elemental subroutine and added a second thin wrapper in thenetwork_typeclass. This way, different functions can be set for each individual layer using the syntax:The same could be done for the network constructor.
The
test_network_savetest has been modified to test also the activation functions are matching (by procedure pointer association).This pull request will make old saved network files broken, and will need to be manually edited to include the missing metadata.