-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Keep only VAE models with one encoder and one decoder - More complex VAE/VED models will be a part of a separate package
- Loading branch information
1 parent
b820b03
commit e2f9ad1
Showing
5 changed files
with
11 additions
and
348 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
from .segmentor import Segmentor | ||
from .imspec import ImSpec | ||
from .dgm import BaseVAE, VAE, rVAE, jVAE, jrVAE, ssVAE | ||
from .dgm import BaseVAE, VAE, rVAE, jVAE, jrVAE | ||
from .loaders import load_model, load_ensemble | ||
|
||
__all__ = ["Segmentor", "ImSpec", "BaseVAE", "VAE", "rVAE", "ssVAE", | ||
__all__ = ["Segmentor", "ImSpec", "BaseVAE", "VAE", "rVAE", | ||
"jVAE", "jrVAE", "load_model", "load_ensemble"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
from .blocks import ConvBlock, DilatedBlock, ResBlock, ResModule, UpsampleBlock | ||
from .ed import (SignalDecoder, SignalED, SignalEncoder, convDecoderNet, | ||
convEncoderNet, coord_latent, fcDecoderNet, fcEncoderNet, | ||
rDecoderNet, init_imspec_model, init_VAE_nets, fcClassifier) | ||
rDecoderNet, init_imspec_model, init_VAE_nets) | ||
from .fcnn import Unet, dilnet, SegResNet, ResHedNet, init_fcnn_model | ||
|
||
__all__ = ['ConvBlock', 'ResBlock', 'ResModule', 'UpsampleBlock', 'DilatedBlock', | ||
'init_fcnn_model', 'SegResNet', 'Unet', 'ResHedNet', 'dilnet', 'fcEncoderNet', | ||
'fcDecoderNet', 'convEncoderNet', 'convDecoderNet', 'rDecoderNet', | ||
'coord_latent', 'load_model', 'load_ensemble', 'init_imspec_model', | ||
'init_VAE_nets', 'SignalEncoder', 'SignalDecoder', 'SignalED', 'fcClassifier'] | ||
'init_VAE_nets', 'SignalEncoder', 'SignalDecoder', 'SignalED'] |
Oops, something went wrong.