ReportDecoWhitebox
- class lightautoml.report.report_deco.ReportDecoWhitebox(**kwargs)[source]
Bases:
ReportDecoSpecial report wrapper for
WhiteBoxPreset. Usage case is the same as mainReportDecoclass. It generates same report asReportDeco, but with additional whitebox report part.Difference:
report_automl.predict gets additional report argument. It stands for updating whitebox report part. Calling
report_automl.predict(test_data, report=True)will update test part of whitebox report. Callingreport_automl.predict(test_data, report=False)will extend general report with. New data and keeps whitebox part as is (much more faster).WhiteBoxPresetshould be created with parametergeneral_params={"report": True}to get white box report part. Ifgeneral_paramsset to{"report": False}, only standard ReportDeco part will be created (much faster).
- property model
Get unwrapped WhiteBox.
- Returns:
model.