-
Notifications
You must be signed in to change notification settings - Fork 8
Galaxy format #42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Galaxy format #42
Conversation
soulios
commented
Nov 6, 2024
- Saving now only weights and not whole models though callbacks with N epochs frequency.
- Fixed issue with the history plots.
|
Can you fix the error: |
Fixed it. ready for review. @mai00fti @bernt-matthias |
|
If epochs < 10, the output looks like this: If epochs >= 10, the output looks like this: This is because in the first case, an error is thrown when the first h5 file is created: This originates from callback_model.load_weights(filepath=checkpoint_model_weights_path) |
Yes, because the period in which the model is saved is every 10 epochs because if it was every epoch it would add a lot of time overhead. This is intended. But maybe we should limit the opts.epochs to take values above 10 and the same goes for autoencoder but it is saved every 5 epochs, so opts.aeEpochs should accept minimum 5 as a value. |
Sounds reasonable. @tom-mohr has already set the min for Just thinking loud (and not suggesting that we should do this in the PR): We can also give the list of CLI arguments to |