-
Notifications
You must be signed in to change notification settings - Fork 3
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
Transformer integrator #131
Conversation
Now using ResNet instead of ResNetLayer. ResNet -> ResNetLayer. Added some spaces for readibility. ResNet -> ResNetLayer. ResNet -> ResNetLayer. ResNet -> ResNetLayer.
…rator) architecture.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There's a typo: "the defualt is"
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #131 +/- ##
==========================================
+ Coverage 63.31% 64.46% +1.14%
==========================================
Files 114 117 +3
Lines 3260 3309 +49
==========================================
+ Hits 2064 2133 +69
+ Misses 1196 1176 -20 ☔ View full report in Codecov by Sentry. |
Fixed the typo and adjusted the interface in the docs which meant the Documenter workflow was crashing before. |
Introduced a new type
TransformerIntegrator
that makes the transformer behave similarly to a classical multi-step method. For now this is done by extendingiterate
, but will have to be interfaced withGeometricIntegratorsBase
eventually.