From 49e1e7e4e30b103c00f0f7d7ec801f034758de06 Mon Sep 17 00:00:00 2001 From: valer1435 Date: Mon, 11 Dec 2023 17:05:32 +0300 Subject: [PATCH] fixes --- docs/source/examples/classification_example.rst | 1 + docs/source/examples/regression_example.rst | 1 + 2 files changed, 2 insertions(+) diff --git a/docs/source/examples/classification_example.rst b/docs/source/examples/classification_example.rst index 8f21a0813a..a2eb75dac7 100644 --- a/docs/source/examples/classification_example.rst +++ b/docs/source/examples/classification_example.rst @@ -140,6 +140,7 @@ And you can do inference: task=Task(TaskTypesEnum.classification), data_type=DataTypesEnum.table) prediction = loaded_pipeline.predict(new_data_to_predict).predict # Note that we should take .predict field for prediction + .. note:: ``Pipeline`` don't have method ``predict_proba()``, you need to use param diff --git a/docs/source/examples/regression_example.rst b/docs/source/examples/regression_example.rst index d525553de3..bb8bc013af 100644 --- a/docs/source/examples/regression_example.rst +++ b/docs/source/examples/regression_example.rst @@ -142,6 +142,7 @@ And you can do inference: data_type=DataTypesEnum.table) prediction = loaded_pipeline.predict(new_data_to_predict).predict # Note that we should take .predict field for prediction + .. note:: For more detail about pipelines save and load, please visit `this section `.