-
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
Symplectic Autoencoder and PSD architecture #138
Conversation
…o implement the functions encoder_layers_from_iteration and decoder_layers_from_iteration if they wish to implement their own autoencoder.
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #138 +/- ##
==========================================
+ Coverage 67.37% 68.13% +0.76%
==========================================
Files 116 119 +3
Lines 3169 3314 +145
==========================================
+ Hits 2135 2258 +123
- Misses 1034 1056 +22 ☔ View full report in Codecov by Sentry. |
Please rename |
I thought that the |
Changed names of functions:
|
Implemented a symplectic autoencoder and a PSD architecture. For the PSD architecture we don't perform training but use
solve!
. They are both subtypes ofAutoEncoder
. Much of the functionnality forSymplecticAutoencoder
andPSDArch
is performed by this genericAutoEncoder
type.