Scikit-Learn runtime for KozmoServer
Project description
Scikit-Learn runtime for KozmoServer
This package provides a KozmoServer runtime compatible with Scikit-Learn.
Usage
You can install the runtime, alongside kozmoserver
, as:
pip install kozmoserver kozmoserver-sklearn
For further information on how to use KozmoServer 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 <kozmoserver.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
Hashes for kozmoserver_sklearn-0.1.0.dev1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 46bd2cd3d16efdb5ffa1448f6e609c7d163f9ddea0dfcfcbf7398118bb22c425 |
|
MD5 | 4a443cef2208e92740621c55a53beb35 |
|
BLAKE2b-256 | 8f5b5a5b598e9c33c02611a42fa4f76d25524676d7afb101cab2595013895fa8 |
Hashes for kozmoserver_sklearn-0.1.0.dev1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7d0a27fec8cdfbed90649e36cc720c4d1b2d973860b79fd3c4f78a14492d6d39 |
|
MD5 | 9c2269290b276a1c14c7569511cbb8d8 |
|
BLAKE2b-256 | 391d6962c86fcb0748b89ef9cf315630102bff41e5593d7ad29ba0c9d1f7fe5d |