OpenSearch-provided pretrained models

Generally available 2.9

OpenSearch provides a variety of open-source pretrained models that can assist with a range of machine learning (ML) search and analytics use cases. You can upload any supported model to the OpenSearch cluster and use it locally.

Prerequisites

To get started, select one of the supported pretrained models.

Cluster settings

This example uses a simple setup with no dedicated ML nodes and allows running a model on a non-ML node.

On clusters with dedicated ML nodes, specify "only_run_on_ml_node": "true" for improved performance. For more information, see ML Commons cluster settings.

To ensure that this basic local setup works, specify the following cluster settings:

  1. PUT _cluster/settings
  2. {
  3. "persistent": {
  4. "plugins": {
  5. "ml_commons": {
  6. "only_run_on_ml_node": "false",
  7. "model_access_control_enabled": "true",
  8. "native_memory_threshold": "99"
  9. }
  10. }
  11. }
  12. }

copy

Step 1: Register a model group

To register a model, you have the following options:

  • You can use model_group_id to register a model version to an existing model group.
  • If you do not use model_group_id, ML Commons creates a model with a new model group.

To register a model group, send the following request:

  1. POST /_plugins/_ml/model_groups/_register
  2. {
  3. "name": "local_model_group",
  4. "description": "A model group for local models"
  5. }

copy

The response contains the model group ID that you’ll use to register a model to this model group:

  1. {
  2. "model_group_id": "wlcnb4kBJ1eYAeTMHlV6",
  3. "status": "CREATED"
  4. }

To learn more about model groups, see Model access control.

Step 2: Register a local OpenSearch-provided model

To register a remote model to the model group created in step 1, provide the model group ID from step 1 in the following request.

Because pretrained sentence transformer models originate from the ML Commons model repository, you only need to provide the name, version, model_group_id, and model_format in the upload API request:

  1. POST /_plugins/_ml/models/_register
  2. {
  3. "name": "huggingface/sentence-transformers/msmarco-distilbert-base-tas-b",
  4. "version": "1.0.1",
  5. "model_group_id": "Z1eQf4oB5Vm0Tdw8EIP2",
  6. "model_format": "TORCH_SCRIPT"
  7. }

copy

Note that for sparse encoding models, you still need to upload the full request body, as shown in the following example:

  1. POST /_plugins/_ml/models/_register
  2. {
  3. "name": "amazon/neural-sparse/opensearch-neural-sparse-encoding-doc-v1",
  4. "version": "1.0.0",
  5. "model_group_id": "Z1eQf4oB5Vm0Tdw8EIP2",
  6. "description": "This is a neural sparse encoding model: It transfers text into sparse vector, and then extract nonzero index and value to entry and weights. It serves only in ingestion and customer should use tokenizer model in query.",
  7. "model_format": "TORCH_SCRIPT",
  8. "function_name": "SPARSE_ENCODING",
  9. "model_content_hash_value": "9a41adb6c13cf49a7e3eff91aef62ed5035487a6eca99c996156d25be2800a9a",
  10. "url": "https://artifacts.opensearch.org/models/ml-models/amazon/neural-sparse/opensearch-neural-sparse-encoding-doc-v1/1.0.0/torch_script/opensearch-neural-sparse-encoding-doc-v1-1.0.0-torch_script.zip"
  11. }

copy

You can find the url and model_content_hash_value in the model config link for each model. For more information, see the Supported pretrained models section. Set the function_name to SPARSE_ENCODING or SPARSE_TOKENIZE.

Note that the function_name parameter in the request corresponds to the model_task_type parameter in the model config. When using a pretrained model, make sure to change the name of the parameter from model_task_type to function_name in the model upload request.

OpenSearch returns the task ID of the register operation:

  1. {
  2. "task_id": "cVeMb4kBJ1eYAeTMFFgj",
  3. "status": "CREATED"
  4. }

To check the status of the operation, provide the task ID to the Tasks API:

  1. GET /_plugins/_ml/tasks/cVeMb4kBJ1eYAeTMFFgj

copy

When the operation is complete, the state changes to COMPLETED:

  1. {
  2. "model_id": "cleMb4kBJ1eYAeTMFFg4",
  3. "task_type": "REGISTER_MODEL",
  4. "function_name": "REMOTE",
  5. "state": "COMPLETED",
  6. "worker_node": [
  7. "XPcXLV7RQoi5m8NI_jEOVQ"
  8. ],
  9. "create_time": 1689793598499,
  10. "last_update_time": 1689793598530,
  11. "is_async": false
  12. }

Take note of the returned model_id because you’ll need it to deploy the model.

Step 3: Deploy the model

The deploy operation reads the model’s chunks from the model index and then creates an instance of the model to load into memory. The bigger the model, the more chunks the model is split into and longer it takes for the model to load into memory.

To deploy the registered model, provide its model ID from step 3 in the following request:

  1. POST /_plugins/_ml/models/cleMb4kBJ1eYAeTMFFg4/_deploy

copy

The response contains the task ID that you can use to check the status of the deploy operation:

  1. {
  2. "task_id": "vVePb4kBJ1eYAeTM7ljG",
  3. "status": "CREATED"
  4. }

As in the previous step, check the status of the operation by calling the Tasks API:

  1. GET /_plugins/_ml/tasks/vVePb4kBJ1eYAeTM7ljG

copy

When the operation is complete, the state changes to COMPLETED:

  1. {
  2. "model_id": "cleMb4kBJ1eYAeTMFFg4",
  3. "task_type": "DEPLOY_MODEL",
  4. "function_name": "REMOTE",
  5. "state": "COMPLETED",
  6. "worker_node": [
  7. "n-72khvBTBi3bnIIR8FTTw"
  8. ],
  9. "create_time": 1689793851077,
  10. "last_update_time": 1689793851101,
  11. "is_async": true
  12. }

If a cluster or node is restarted, then you need to redeploy the model. To learn how to set up automatic redeployment, see Enable auto redeploy.

Step 4 (Optional): Test the model

Use the Predict API to test the model.

For a text embedding model, send the following request:

  1. POST /_plugins/_ml/_predict/text_embedding/cleMb4kBJ1eYAeTMFFg4
  2. {
  3. "text_docs":[ "today is sunny"],
  4. "return_number": true,
  5. "target_response": ["sentence_embedding"]
  6. }

copy

The response contains text embeddings for the provided sentence:

  1. {
  2. "inference_results" : [
  3. {
  4. "output" : [
  5. {
  6. "name" : "sentence_embedding",
  7. "data_type" : "FLOAT32",
  8. "shape" : [
  9. 768
  10. ],
  11. "data" : [
  12. 0.25517133,
  13. -0.28009856,
  14. 0.48519906,
  15. ...
  16. ]
  17. }
  18. ]
  19. }
  20. ]
  21. }

For a sparse encoding model, send the following request:

  1. POST /_plugins/_ml/_predict/sparse_encoding/cleMb4kBJ1eYAeTMFFg4
  2. {
  3. "text_docs":[ "today is sunny"]
  4. }

copy

The response contains the tokens and weights:

  1. {
  2. "inference_results": [
  3. {
  4. "output": [
  5. {
  6. "name": "output",
  7. "dataAsMap": {
  8. "response": [
  9. {
  10. "saturday": 0.48336542,
  11. "week": 0.1034762,
  12. "mood": 0.09698499,
  13. "sunshine": 0.5738209,
  14. "bright": 0.1756877,
  15. ...
  16. }
  17. }
  18. }
  19. }
  20. }

To learn how to set up a vector index and use text embedding models for search, see Semantic search.

To learn how to set up a vector index and use sparse encoding models for search, see Neural sparse search.

Supported pretrained models

OpenSearch supports the following models, categorized by type. Text embedding models are sourced from Hugging Face. Sparse encoding models are trained by OpenSearch. Although models with the same type will have similar use cases, each model has a different model size and will perform differently depending on your cluster setup. For a performance comparison of some pretrained models, see the SBERT documentation.

Sentence transformers

Sentence transformer models map sentences and paragraphs across a dimensional dense vector space. The number of vectors depends on the type of model. You can use these models for use cases such as clustering or semantic search.

The following table provides a list of sentence transformer models and artifact links you can use to download them. Note that you must prefix the model name with huggingface/, as shown in the Model name column.

Model nameVersionVector dimensionsAuto-truncationTorchScript artifactONNX artifact
huggingface/sentence-transformers/all-distilroberta-v11.0.1768-dimensional dense vector space.Yes- model_url
- config_url
- model_url
- config_url
huggingface/sentence-transformers/all-MiniLM-L6-v21.0.1384-dimensional dense vector space.Yes- model_url
- config_url
- model_url
- config_url
huggingface/sentence-transformers/all-MiniLM-L12-v21.0.1384-dimensional dense vector space.Yes- model_url
- config_url
- model_url
- config_url
huggingface/sentence-transformers/all-mpnet-base-v21.0.1768-dimensional dense vector space.Yes- model_url
- config_url
- model_url
- config_url
huggingface/sentence-transformers/msmarco-distilbert-base-tas-b1.0.2768-dimensional dense vector space. Optimized for semantic search.Yes- model_url
- config_url
- model_url
- config_url
huggingface/sentence-transformers/multi-qa-MiniLM-L6-cos-v11.0.1384-dimensional dense vector space. Designed for semantic search and trained on 215 million question/answer pairs.Yes- model_url
- config_url
- model_url
- config_url
huggingface/sentence-transformers/multi-qa-mpnet-base-dot-v11.0.1384-dimensional dense vector space.Yes- model_url
- config_url
- model_url
- config_url
huggingface/sentence-transformers/paraphrase-MiniLM-L3-v21.0.1384-dimensional dense vector space.Yes- model_url
- config_url
- model_url
- config_url
huggingface/sentence-transformers/paraphrase-multilingual-MiniLM-L12-v21.0.1384-dimensional dense vector space.Yes- model_url
- config_url
- model_url
- config_url
huggingface/sentence-transformers/paraphrase-mpnet-base-v21.0.0768-dimensional dense vector space.Yes- model_url
- config_url
- model_url
- config_url
huggingface/sentence-transformers/distiluse-base-multilingual-cased-v11.0.1512-dimensional dense vector space.Yes- model_url
- config_url
Not available
huggingface/sentence-transformers/paraphrase-mpnet-base-v21.0.0768-dimensional dense vector space.Yes- model_url
- config_url
- model_url
- config_url

Sparse encoding models

Introduced 2.11

Sparse encoding models transfer text into a sparse vector and convert the vector to a list of <token: weight> pairs representing the text entry and its corresponding weight in the sparse vector. You can use these models for use cases such as clustering or sparse neural search.

We recommend the following models for optimal performance:

  • Use the amazon/neural-sparse/opensearch-neural-sparse-encoding-v1 model during both ingestion and search.
  • Use the amazon/neural-sparse/opensearch-neural-sparse-encoding-doc-v1 model during ingestion and the amazon/neural-sparse/opensearch-neural-sparse-tokenizer-v1 model during search.

The following table provides a list of sparse encoding models and artifact links you can use to download them.

Model nameAuto-truncationTorchScript artifactDescription
amazon/neural-sparse/opensearch-neural-sparse-encoding-v1Yes- model_url
- config_url
A neural sparse encoding model. The model transforms text into a sparse vector, identifies the indexes of non-zero elements in the vector, and then converts the vector into <entry, weight> pairs, where each entry corresponds to a non-zero element index.
amazon/neural-sparse/opensearch-neural-sparse-encoding-doc-v1Yes- model_url
- config_url
A neural sparse encoding model. The model transforms text into a sparse vector, identifies the indexes of non-zero elements in the vector, and then converts the vector into <entry, weight> pairs, where each entry corresponds to a non-zero element index.
amazon/neural-sparse/opensearch-neural-sparse-tokenizer-v1Yes- model_url
- config_url
A neural sparse tokenizer model. The model tokenizes text into tokens and assigns each token a predefined weight, which is the token’s IDF (if the IDF file is not provided, the weight defaults to 1). For more information, see Preparing a model.