Disentanglix Module
Disentanglix
Bases: BasePipeline
Disentanglix-specific version of the BasePipeline.
This class extends BasePipeline. See the parent class for a full list of attributes and methods.
Additional Attributes
_default_config: Is set to DisentanglixConfig here.
Source code in src/autoencodix/disentanglix.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | |
__init__(data=None, trainer_type=GeneralTrainer, dataset_type=NumericDataset, model_type=VarixArchitecture, loss_type=DisentanglixLoss, preprocessor_type=GeneralPreprocessor, visualizer=GeneralVisualizer, evaluator=GeneralEvaluator, result=None, datasplitter_type=DataSplitter, custom_splits=None, config=None)
Initialize Varix pipeline with customizable components.
See the init method of parent class for a full list of Args.
Source code in src/autoencodix/disentanglix.py
39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | |