Varix Module
Varix
Bases: BasePipeline
Varix specific version of the BasePipeline class.
Inherits preprocess, fit, predict, evaluate, and visualize methods from BasePipeline. This class extends BasePipeline. See the parent class for a full list of attributes and methods.
Additional Attributes
_default_config: Is set to VarixConfig here.
Source code in src/autoencodix/varix.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 73 74 75 76 77 78 79 80 | |
__init__(data=None, trainer_type=GeneralTrainer, dataset_type=NumericDataset, model_type=VarixArchitecture, loss_type=VarixLoss, preprocessor_type=GeneralPreprocessor, visualizer=GeneralVisualizer, evaluator=GeneralEvaluator, result=None, datasplitter_type=DataSplitter, custom_splits=None, ontologies=None, config=None)
Initialize Varix pipeline with customizable components.
Some components are passed as types rather than instances because they require data that is only available after preprocessing.
See parent class for full list of Args.
Source code in src/autoencodix/varix.py
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 73 74 75 76 77 78 79 80 | |