Kanon Universal Classifier Mini is a lightweight legal reranking and zero-shot classification/NLI model optimized for scoring the relevance of queries to legal documents and classifying legal documents. With 136 million parameters, it is 14% less accurate than the base Kanon Universal Classifier (https://aws.amazon.com/marketplace/pp/prodview-6dotzeq7aq4sy) while being 100% smaller and faster.
Kanon Universal Classifier Mini supports a local context window of 512 tokens but can process documents of any length thanks to Isaacus' semchunk semantic chunking algorithm (https://github.com/isaacus-dev/semchunk).
On a g6.xlarge instance, Kanon Universal Classifier Mini can rerank or classify up to 258 million tokens per hour (equivalent to roughly 64k legal documents).
Like all other Isaacus SageMaker model deployments, your Kanon Universal Classifier Mini deployment will be fully air-gapped--no data will enter or leave your AWS account.
You can negotiate a discount to Kanon Universal Classifier Mini by contacting us at https://isaacus.com/support.
Highlights
14% less accurate than [Kanon Universal Classifier](https://aws.amazon.com/marketplace/pp/prodview-6dotzeq7aq4sy) while being 100% smaller and faster.
Supports legal documents of any length thanks to Isaacus' [semchunk](https://github.com/isaacus-dev/semchunk) semantic chunking algorithm.
Capable of processing ~64k legal documents (258 million tokens) per hour on a single `g6.xlarge` instance.
AWS Marketplace now accepts line of credit payments through the PNC Vendor Finance program. This program is available to select AWS customers in the US, excluding NV, NC, ND, TN, & VT.
You pay by the host hour for running this legal reranker model on Amazon SageMaker. Pricing splits into two inference modes: batch, for processing large volumes at once, and real-time, for on-demand requests. Within each mode, you choose from ten GPU instance sizes across the ml.g5 and ml.g6 families, ranging from xlarge up to 16xlarge. Larger instances offer more compute per hour. You are charged only while an endpoint runs, so cost scales with how long and which instance you keep active.
Top-of-mind questions for buyers
Am I charged when a SageMaker endpoint is stopped or idle?
You pay per host hour only while an endpoint runs. A stopped or deleted endpoint stops accruing software charges. Real-time endpoints run continuously until you delete them, so they meter time whether or not you send requests. Batch jobs meter only while processing runs.
What is the difference between batch and real-time inference modes for billing?
Both meter host hours on the same instance types. Real-time mode keeps an endpoint live for on-demand requests, so it accrues time while deployed. Batch mode processes large volumes in a job and meters only during that run. Choose real-time for interactive use and batch for bulk processing.
Do I pay Isaacus separately when running the model on my own AWS account?
No. This SageMaker deployment is air-gapped and runs entirely within your AWS account. You are billed per host hour through AWS Marketplace based on the instance and mode you run. There is no separate per-token API charge for these self-hosted SageMaker models.
isaacus.com+1
Helpful?
Vendor refund policy
To the maximum extent permitted by law, there are no refunds for consumption of this product.
How can we make this page better?
Tell us how we can improve this page, or report an issue with this product.
Give us feedbackReport a problem with this product or seller
Legal
Vendor terms and conditions
Upon subscribing to this product, you must acknowledge and agree to the terms and conditions outlined in the vendor's End User License Agreement (EULA).
Content disclaimer
Vendors are responsible for their product descriptions and other product content. AWS does not warrant that vendors' product descriptions or other product content are accurate, complete, reliable, current, or error-free.
An Amazon SageMaker model package is a pre-trained machine learning model ready to use without additional training. Use the model package to create a model on Amazon SageMaker for real-time inference or batch processing. Amazon SageMaker is a fully managed platform for building, training, and deploying machine learning models at scale.
Deploy the model on Amazon SageMaker AI using the following options:
Real-time inference
Deploy the model as an API endpoint for your applications. When you send data to the endpoint, SageMaker processes it and returns results by API response. The endpoint runs continuously until you delete it. You're billed for software and SageMaker infrastructure costs while the endpoint runs. AWS Marketplace models don't support Amazon SageMaker Asynchronous Inference. For more information, see Deploy models for real-time inference .
Batch transform
Deploy the model to process batches of data stored in Amazon Simple Storage Service (Amazon S3). SageMaker runs the job, processes your data, and returns results to Amazon S3. When complete, SageMaker stops the model. You're billed for software and SageMaker infrastructure costs only during the batch job. Duration depends on your model, instance type, and dataset size. AWS Marketplace models don't support Amazon SageMaker Asynchronous Inference. For more information, see Batch transform for inference with Amazon SageMaker AI .
Version release notes
Patched release of this model with version 0.1.4 of the Isaacus SageMaker Model Server, fixing the inability to load models after 19 January 2026 due to an expired Isaacus license key that should now never expire.
Additional details
Inputs
Outputs
Usage instructions
Sample notebooks
Inputs
Summary
For a user-friendly walkthrough of how to get started deploying Isaacus models on SageMaker, check out the Isaacus SageMaker quickstart guide on our docs.
This model runs on the fully air-gapped Isaacus SageMaker Model Server, which supports all the same functionality as the standard Isaacus API except that requests to the server must be proxied through the /invocations endpoint.
For example, if you wanted to send a POST request to /v1/rerankings with the data {"model":"kanon-universal-classifier-mini","query":"Who is the Governor-General?","texts":["The Governor-General is Sam Mostyn.","The King is Charles III."]}, you could so by sending /invocations the payload {"path":"/v1/rerankings","data":{"model":"kanon-universal-classifier-mini","query":"Who is the Governor-General?","texts":["The Governor-General is Sam Mostyn.","The King is Charles III."]}}.
This means that minimal code changes are necessary to switch between the online Isaacus API and your own private Isaacus model deployments.
In fact, Python users can use the Isaacus SageMaker Python integration to automatically forward requests to the Isaacus API to SageMaker deployments using the standard Isaacus SDK.
Given that this is a private deployment and that authentication is managed by AWS, Isaacus API keys are not needed and are ignored.
All the same limitations applicable to the Isaacus API except for the need for an API key.
Input MIME type
application/json
Real-time inference sample input data
{
"path": "/v1/rerankings",
"data": {
"model": "kanon-universal-classifier-mini",
"query": "Who is the Governor-General?",
"texts": [
"The Governor-General is Sam Mostyn.",
"The King is Charles III."
]
}
}
Batch transform sample input data
{
"path": "/v1/rerankings",
"data": {
"model": "kanon-universal-classifier-mini",
"query": "Who is the Governor-General?",
"texts": [
"The Governor-General is Sam Mostyn.",
"The King is Charles III."
]
}
}
Input data descriptions
The following table describes supported input data fields for real-time inference and batch transform.
Field name
Description
Constraints
Required
path
The path of the API endpoint being invoked (e.g., `/v1/rerankings` or `/v1/classifications/universal`).
One of `v1/embeddings`, `/v1/rerankings`, `/v1/extractions/qa`, and `/v1/classifications/universal`.
Yes
method
The HTTP method used for the invocation (e.g., `POST`). Defaults to `POST`.
One of `POST`.
No
headers
The HTTP headers to include in the invocation request. Defaults to `null`/`None`, in which case no additional headers are sent.
Must be a mapping of strings to strings.
No
data
The data to be sent as the body of the invocation request. This can be any serializable object. Defaults to `null`/`None`, in which case no body is sent.
To get in touch with our support team, you can reach out via the support form on our website: https://isaacus.com/support. We endeavor to respond within 24 hours.
AWS infrastructure support
AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.
A state-of-the-art legal embedding model optimized for semantic search, RAG, and document classification, ranked first on the Massive Legal Embedding Benchmark.
A state-of-the-art reranking model optimized for legal RAG, research, and classification, ranked first on Legal RAG Bench and the Massive Legal Embedding Benchmark (MLEB).
Be the first to review this product. We've partnered with PeerSpot to gather customer feedback. You can share your experience by writing or recording a review, or scheduling a call with a PeerSpot analyst.