Scikit-Learn runtime for MLServer
Project description
Scikit-Learn runtime for MLServer
This package provides a MLServer runtime compatible with Scikit-Learn.
Usage
You can install the runtime, alongside mlserver
, as:
pip install mlserver mlserver-sklearn
For further information on how to use MLServer with Scikit-Learn, you can check out this worked out example.
Content Types
If no content type is present on the request or metadata, the Scikit-Learn runtime will try to decode the payload as a NumPy Array. To avoid this, either send a different content type explicitly, or define the correct one as part of your model's metadata.
Model Outputs
The Scikit-Learn inference runtime exposes a number of outputs depending on the
model type.
These outputs match to the predict
, predict_proba
and transform
methods
of the Scikit-Learn model.
Output | Returned By Default | Availability |
---|---|---|
predict |
✅ | Available on most models, but not in Scikit-Learn pipelines. |
predict_proba |
❌ | Only available on non-regressor models. |
transform |
❌ | Only available on Scikit-Learn pipelines. |
By default, the runtime will only return the output of predict
.
However, you are able to control which outputs you want back through the
outputs
field of your {class}InferenceRequest <mlserver.types.InferenceRequest>
payload.
For example, to only return the model's predict_proba
output, you could
define a payload such as:
---
emphasize-lines: 10-12
---
{
"inputs": [
{
"name": "my-input",
"datatype": "INT32",
"shape": [2, 2],
"data": [1, 2, 3, 4]
}
],
"outputs": [
{ "name": "predict_proba" }
]
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file mlserver_sklearn-1.6.2rc1.tar.gz
.
File metadata
- Download URL: mlserver_sklearn-1.6.2rc1.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.10.15 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eefb223ffc6ca05a8400c42478e7e824d1434077f0bd366ddc5e07078a7fb3b0 |
|
MD5 | 557394506090094acd204aeae056df46 |
|
BLAKE2b-256 | 5069be46277df2be353ca313df03b43a1913b07e5e98988e4e470120ce317d96 |
File details
Details for the file mlserver_sklearn-1.6.2rc1-py3-none-any.whl
.
File metadata
- Download URL: mlserver_sklearn-1.6.2rc1-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.8.4 CPython/3.10.15 Linux/6.5.0-1025-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5df9f66480684414bf19d8de0e724b582d7bf870ba4b2b4f86d535bd6bb41320 |
|
MD5 | 74c22adef63c06bfd4caf2cd884dc663 |
|
BLAKE2b-256 | 14bcdd11b997e54b9a32f39b8ef0597eb607b7471c526f3444542fc93fbac250 |