Developer Docs: What happens during Setup?
Initiating the cloud_classifier class
During setup, a cloud_classifier class is initiated via:
cc = cloud_classifier.cloud_classifier()
This triggers two actions:
the
cloud_projectclass is initiatedthe
cloud_trainerclass is initiated
Initiating the cloud_project class
The init of the cloud project handles:
setting the
project_pathinitiating a
parameter_handlerclassretrieves the default parameters from the
parameter_handlerinitializes an index set for masking
Initiating the parameter_handler class
This sets default parameters:
it defines json config files for general setting aspects
it defines filelists again as json files, e.g. input files, label files, etc.
it defines parameters for the machine learning method + details on the input and label characteristics
Initiating the cloud_trainer class
The cloud_trainer class is responsible for
training an ML model based on input and label data
applying a trained ML model to new input data
During initialization no further action is taken.