Spaces:
Runtime error
Runtime error
| """ | |
| models package initialization | |
| Exports the VAEModel for anomaly detection in MRI scans | |
| """ | |
| from .vae import VAEModel | |
| __version__ = '1.0.0' | |
| # Shortcut imports | |
| __all__ = [ | |
| 'VAEModel', # variational autoencoder | |
| ] |