Multi Model Server (Deprecated)

1.1.11 · deprecated · verified Thu Apr 16

Multi Model Server (MMS) was an AWS Labs tool designed for serving neural network models for inference. This specific PyPI package and its underlying project have been deprecated and are no longer actively maintained. Users are strongly encouraged to migrate to TorchServe for ongoing support and new features. The last released version was 1.1.11.

Common errors

Warnings

Install

Imports

Quickstart

This quickstart demonstrates how to install and start the deprecated Multi Model Server using its command-line interface. Note that for actual model serving, you would typically archive models first. Given the project's deprecated status, this is provided for historical context or existing deployments only.

# 1. Install the deprecated server
pip install multi-model-server

# 2. (Optional, but highly recommended for actual serving) Create a model archive.
#    Note: torch-model-archiver is now part of TorchServe installation. 
#    If you need to archive models for this deprecated MMS, you might need
#    an older, compatible version of torch-model-archiver or manually bundle.
#    Example using (potentially incompatible) current torch-model-archiver syntax:
#    torch-model-archiver --model-name mymodel --version 1.0 --model-file model.py --handler handler.py

# 3. Start the Multi Model Server
multi-model-server --start

view raw JSON →