Metadata-Version: 2.1
Name: mlserver-lightgbm
Version: 1.4.0rc5
Summary: LightGBM runtime for MLServer
License: Apache-2.0
Author: Seldon Technologies Ltd.
Author-email: hello@seldon.io
Requires-Python: >=3.8.1,<3.12
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: lightgbm
Requires-Dist: mlserver
Requires-Dist: pandas
Description-Content-Type: text/markdown

# LightGBM runtime for MLServer

This package provides a MLServer runtime compatible with LightGBM.

## Usage

You can install the runtime, alongside `mlserver`, as:

```bash
pip install mlserver mlserver-lightgbm
```

For further information on how to use MLServer with LightGBM, you can check out
this [worked out example](../../docs/examples/lightgbm/README.md).

## Content Types

If no [content type](../../docs/user-guide/content-type) is present on the
request or metadata, the LightGBM runtime will try to decode the payload as
a [NumPy Array](../../docs/user-guide/content-type).
To avoid this, either send a different content type explicitly, or define the
correct one as part of your [model's
metadata](../../docs/reference/model-settings).

