Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
valer1435 committed Dec 11, 2023
1 parent 024df35 commit 49e1e7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/source/examples/classification_example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions docs/source/examples/regression_example.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 </basics/pipeline_save_load>`.
Expand Down

0 comments on commit 49e1e7e

Please sign in to comment.