Ontix Module
Ontix
Bases: BasePipeline
Ontix 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 OntixConfig here.
Source code in src/autoencodix/ontix.py
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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 | |
__init__(ontologies, sep='\t', data=None, trainer_type=OntixTrainer, dataset_type=NumericDataset, model_type=OntixArchitecture, loss_type=VarixLoss, preprocessor_type=GeneralPreprocessor, visualizer=GeneralVisualizer, evaluator=GeneralEvaluator, result=None, datasplitter_type=DataSplitter, custom_splits=None, config=None)
Initialize Ontix 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 Arguments.
Raises:
| Type | Description |
|---|---|
TypeError
|
if ontologies are not a Tuple or List. |
Source code in src/autoencodix/ontix.py
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 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | |