This release is a pre-release and may not be stable for production use.
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" }
]
}
Release files for kozmoserver-sklearn 0.1.0.dev1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| kozmoserver_sklearn-0.1.0.dev1.tar.gz | 7.1 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| kozmoserver_sklearn-0.1.0.dev1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 15.3 kB
Release files / kozmoserver_sklearn-0.1.0.dev1.tar.gz
| Download URL | kozmoserver_sklearn-0.1.0.dev1.tar.gz |
|---|---|
| Size | 7.1 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
46bd2cd3d16efdb5ffa1448f6e609c7d163f9ddea0dfcfcbf7398118bb22c425
|
|
BLAKE2b-256 checksum How to use checksums |
8f5b5a5b598e9c33c02611a42fa4f76d25524676d7afb101cab2595013895fa8
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.5.1 CPython/3.9.13 Darwin/22.1.0
|
Release files / kozmoserver_sklearn-0.1.0.dev1-py3-none-any.whl
| Download URL | kozmoserver_sklearn-0.1.0.dev1-py3-none-any.whl |
|---|---|
| Size | 8.1 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
7d0a27fec8cdfbed90649e36cc720c4d1b2d973860b79fd3c4f78a14492d6d39
|
|
BLAKE2b-256 checksum How to use checksums |
391d6962c86fcb0748b89ef9cf315630102bff41e5593d7ad29ba0c9d1f7fe5d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.5.1 CPython/3.9.13 Darwin/22.1.0
|