sklearn_pmml_model.auto_detect#

The sklearn.auto_detect module implements methods to automatically detect the type of model from a PMML file.

Submodules#

Package Contents#

Functions#

auto_detect_estimator(pmml, **kwargs)

Automatically detect and return the described estimator from PMML file.

auto_detect_classifier(pmml, **kwargs)

Automatically detect and return the described classifier from PMML file.

auto_detect_regressor(pmml, **kwargs)

Automatically detect and return the described regressor from PMML file.

sklearn_pmml_model.auto_detect.auto_detect_estimator(pmml, **kwargs)#

Automatically detect and return the described estimator from PMML file.

Parameters:
pmmlstr, object

Filename or file object containing PMML data.

sklearn_pmml_model.auto_detect.auto_detect_classifier(pmml, **kwargs)#

Automatically detect and return the described classifier from PMML file.

Parameters:
pmmlstr, object

Filename or file object containing PMML data.

sklearn_pmml_model.auto_detect.auto_detect_regressor(pmml, **kwargs)#

Automatically detect and return the described regressor from PMML file.

Parameters:
pmmlstr, object

Filename or file object containing PMML data.