Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix minor typo in sklearn README #1402

Merged
merged 1 commit into from
Sep 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion runtimes/sklearn/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ of the Scikit-Learn model.
| --------------- | ------------------- | -------------------------------------------------------------------------------------------------------------------- |
| `predict` | ✅ | Available on most models, but not in [Scikit-Learn pipelines](https://scikit-learn.org/stable/modules/compose.html). |
| `predict_proba` | ❌ | Only available on non-regressor models. |
| `transform` | ❌ | Only availabe on [Scikit-Learn pipelines](https://scikit-learn.org/stable/modules/compose.html). |
| `transform` | ❌ | Only available on [Scikit-Learn pipelines](https://scikit-learn.org/stable/modules/compose.html). |

By default, the runtime will only return the output of `predict`.
However, you are able to control which outputs you want back through the
Expand Down