Scikit-learn
Chassisml Version Update Warning
Note: this guide only works when using Chassisml version 1.4.13 or lower. Please visit the latest framework examples here.
This guide demonstrates the process of automatically containerizing your Scikit-learn model.
What you will need
- Dockerhub account
- Connection to running Chassis.ml service (either from a local deployment or via publicly-hosted service)
- Trained Scikit-learn model that can be loaded into memory or code to train a Scikit-learn model from scratch
- Python environment
NOTE: To follow along, you can reference the Jupyter notebook example and data files here.
Set Up Environment
We recommend you follow this guide using a Jupyter Notebook. Follow the appropriate install instructions based on your environment.
Create a Python virtual environment and install the python packages required to load and run your model. At a minimum, pip install the following packages:
pip install chassisml modzy-sdk
If you would like to follow this guide directly, pip install the following additional packages:
scikit-learn>=4.5.5.64
numpy>=1.22.3
Load Model into Memory
If you plan to use the Chassis service, you must first load your model into memory. If you have your trained model file saved locally (.pth
, .pkl
, .h5
, .joblib
, or other file format), you can load your model from the weights file directly, or alternatively train and use the model object.
import chassisml
import numpy as np
import json
from sklearn.linear_model import LogisticRegression
from sklearn import datasets
# Import and normalize data
X_digits, y_digits = datasets.load_digits(return_X_y=True)
X_digits = X_digits / X_digits.max()
n_samples = len(X_digits)
# Split data into training and test sets
X_train = X_digits[: int(0.9 * n_samples)]
y_train = y_digits[: int(0.9 * n_samples)]
X_test = X_digits[int(0.9 * n_samples) :]
y_test = y_digits[int(0.9 * n_samples) :]
# Train Model
logistic = LogisticRegression(max_iter=1000)
print(
"LogisticRegression mean accuracy score: %f"
% logistic.fit(X_train, y_train).score(X_test, y_test)
)
# Save small sample input to use for testing later
sample = X_test[:5].tolist()
with open("data/digits_sample.json", 'w') as out:
json.dump(sample, out)
Define process
Function
process
FunctionYou can think of this function as your "inference" function that will take input data as raw bytes, process the inputs, make predictions, and return the results. This method is the sole parameter required to create a ChassisModel
object.
def process(input_bytes):
inputs = np.array(json.loads(input_bytes))
inference_results = logistic.predict(inputs)
structured_results = []
for inference_result in inference_results:
structured_output = {
"data": {
"result": {"classPredictions": [{"class": str(inference_result), "score": str(1)}]}
}
}
structured_results.append(structured_output)
return structured_results
Create ChassisModel
Object and Publish Model
ChassisModel
Object and Publish ModelFirst, connect to a running instance of the Chassis service - either by deploying on your machine or by connecting to the publicly hosted version of the service). Then, you can use the process
function you defined to create a ChassisModel
object, run a few tests to ensure your model object returns the expected results, and finally publish your model.
chassis_client = chassisml.ChassisClient("http://localhost:5000")
chassis_model = chassis_client.create_model(process_fn=process)
Define sample file from local filepath and run a series of tests.
NOTE: test_env
method is not available on publicly-hosted service.
sample_filepath = './data/digits_sample.json'
results = chassis_model.test(sample_filepath)
print(results)
test_env_result = chassis_model.test_env(sample_filepath)
print(test_env_result)
Define your Dockerhub credentials and publish your model.
dockerhub_user = <my.username>
dockerhub_pass = <my.password>
response = chassis_model.publish(
model_name="Sklearn Logistic Regression Digits Image Classification",
model_version="0.0.1",
registry_user=dockerhub_user,
registry_pass=dockerhub_pass
)
job_id = response.get('job_id')
final_status = chassis_client.block_until_complete(job_id)
You have successfully completed the packaging of your Scikit-learn model. In your Dockerhub account, you should see your new container listed in the "Repositories" tab.
Figure 1. Example Chassis-built Container
Congratulations! In just minutes you automatically created a Docker container with just a few lines of code. To deploy your new model container to Modzy, follow one of the following guides:
Updated 20 days ago