Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1.76 KB

README.md

File metadata and controls

28 lines (19 loc) · 1.76 KB

User guide

The documentation offers several entry points to the AutoML framework:

Graphing structure

Version 0.3.0 of the AutoML framework has undergone fundamental changes with respect to the coding structure. In particular, the framework has moved from a small number of closely-dependent functions to a coding pattern which separates the individual pieces of required functionality into distinct sections. This is facilitated by the directed acyclic graph structure.

Understanding the structure provides insights into the functionality and their interdependencies. It also explains the documentation breakdown within the data pre-processing, data processing and data post-processing sections, which reference the applied functions within each of these sections based on their node within the graph i.e.

.automl.trainTestSplit.node.function
.automl.saveGraph.node.function
.automl.featureData.node.function

Interconnections between sections of the framework:

Interconnections