ml-adapter base classes.
Project description
waylay-ml-adapter-base
Provides the ml_adapter.base
module for the Waylay ML Adapter solution.
To use an ML Adapter in a Waylay plugin or webscript, use the adapter relevant to your machine learning framework:
- waylay-ml-adapter-numpy for generic models that use numpy data representation
- waylay-ml-adapter-sklearn for scikit-learn models.
- waylay-ml-adapter-torch for pytorch models.
This waylay-ml-adapter-base
module provides the framework for these adapters.
Only if you would need to create an adapter utility for another
framework, you would install this module separately:
pip install waylay-ml-adapter-base
Exported classes
This module exports the following classes:
ml_adapter.base.ModelAdapter
Model Adapter base.
Provides the basic contract for exposing a model to a waylay plugin or webscript.
- delegates to a
marshaller
to map the remote, json-compatible python data structures from and to the native tensor data structures for the ML framework. - delegates to a
invoker
to find the model method to be called - the
call
method maps remote requests and invokes the model method - the
call_remote
method tests the round trip serialization, encoding native data request to remotable and back before invokingcall
ml_adapter.base.TensorModelAdapter
Model adapter that uses (dicts of) tensors as inputs and outputs.
Requests are mapped to the model invocation using named parameters, falling back to mapping the "main" entry to the first positional parameter.
ml_adapter.base.WithAssets
Mixin for a configuration backed by assets.
Manages assets of the the plugin or webscript.
Used read-only within a deployed adapter to e.g. load the model definition.
Used read/write within the ml_tool
to edit
the assets of a plugin or webscript.
ml_adapter.base.WithManifest
Mixin for a configuration that has a waylay function manifest file and script.
Adds methods to a WithAssets
adapter to manage the function manifest of
waylay plugin or webscript.
manifest
returns the manifest asset of the function archive atplug.json
orwebscript.json
.as_webscript()
initializes the manifest and script for a webscript that uses an ML Adapter.as_plug()
initializes the manifest and script for a rule plugin that uses an ML Adapter.
ml_adapter.base.WithOpenapi
Mixin for a configuration that has an openapi description.
Adds methods to a WithAssets
adapter to manage the
openapi description of waylay plugin or webscript.
openapi
returns an asset of typeOpenApiAsset
(normally atopenapi.json
)
ml_adapter.base.WithPython
Handles assets specific to python-based functions.
requirements
handles the dependency file (atrequirements.txt
)lib
handles the libraries that are uploaded with the function archive itself. (atlib/*.tar.gz
)main_script
handles the main script of the function (main.py
)scripts
handles other utility scripts of the function (*.py
)
ml_adapter.base.WithModel
Holder of model assets.
Adds methods to a WithAssets
adapter to manage the model instance.
A model can either be:
- given as
model
in the constructor of the adapter - loaded from
model_path
in the assets - loades from
model_path
using amodel_class
The MODEL_ASSET_CLASSES
configured on the adapter
define the methods to load a model.
Defaults are
DillModelAsset
JoblibModelAsset
SelfSerializingModelAsset
ml_adapter.base.SelfSerializingModelAsset
Model asset with own serialization methods.
Reads/writes the model from model.sav
using the save
and load
methods
defined on the model_class
.
ml_adapter.base.DillModelAsset
Model asset for dill-serialized models.
Reads/writes the model from paths like model.dill
, model.pkl
, model.pickle
using dill serialisation.
ml_adapter.base.JoblibModelAsset
Model asset with joblib serialization.
Reads/writes the model from model.joblib
or model.joblib.gz
using joblib serialisation.
ml_adapter.base.Marshaller
Abstract base class to marshall inference requests and responses.
Methods used to invoke the model in a plugin or webscript:
map_request()
maps remote requests (generic typeRREQ
) to native requests (generic typeMREQ
)map_response()
maps native responses (generic typeMRES
) to remote a response (generic typeRRES
)
Methods used to test roundtrip encoding in a client:
encode_request()
encodes a native request to a remote request that can be sent to a waylay function.decode_response()
decodes a remote response from a function to native a response.
Project details
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 waylay_ml_adapter_base-0.0.7.tar.gz
.
File metadata
- Download URL: waylay_ml_adapter_base-0.0.7.tar.gz
- Upload date:
- Size: 28.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8d2dbf17f97b75d13934121516a22c17c27c4e3f71813a6145c8d8efe9c2e8f6 |
|
MD5 | 75c3db9907191d8c62a3237366d09a43 |
|
BLAKE2b-256 | 1f7a8fdb2ffad98a0de440cda79315b75ca7c962fda0992b61a0a59be03efa53 |
File details
Details for the file waylay_ml_adapter_base-0.0.7-py3-none-any.whl
.
File metadata
- Download URL: waylay_ml_adapter_base-0.0.7-py3-none-any.whl
- Upload date:
- Size: 35.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9edb064f91c916eff2ba6a6bfc8a76119f0ceeda621da60b3f9b8fc6ce173c4f |
|
MD5 | 676817b48e37f2e7dfe2b0627a746cab |
|
BLAKE2b-256 | 42a1b5f1625486e8997f4cf3a5abfaf259d7c1dca72918c336e75a982e530c0d |