From ae5ddb0f03ef1b78c9b812f114299b45cf3f8347 Mon Sep 17 00:00:00 2001 From: Yaliang Wu Date: Thu, 26 Jan 2023 09:40:42 -0800 Subject: [PATCH] change model url to public repo in text embedding model example doc Signed-off-by: Yaliang Wu --- .../text_embedding_model_examples.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/model_serving_framework/text_embedding_model_examples.md b/docs/model_serving_framework/text_embedding_model_examples.md index a9952c8974..6b104204c7 100644 --- a/docs/model_serving_framework/text_embedding_model_examples.md +++ b/docs/model_serving_framework/text_embedding_model_examples.md @@ -63,7 +63,7 @@ POST /_plugins/_ml/models/_upload "embedding_dimension": 384, "framework_type": "sentence_transformers" }, - "url": "https://github.com/ylwu-amzn/ml-commons/blob/2.x_custom_m_helper/ml-algorithms/src/test/resources/org/opensearch/ml/engine/algorithms/text_embedding/all-MiniLM-L6-v2_torchscript_sentence-transformer.zip?raw=true" + "url": "https://github.com/opensearch-project/ml-commons/tree/2.x/ml-algorithms/src/test/resources/org/opensearch/ml/engine/algorithms/text_embedding/all-MiniLM-L6-v2_torchscript_sentence-transformer.zip?raw=true" } # Sample response @@ -262,7 +262,7 @@ POST /_plugins/_ml/models/_upload "pooling_mode":"mean", "normalize_result":"true" }, - "url": "https://github.com/ylwu-amzn/ml-commons/blob/2.x_custom_m_helper/ml-algorithms/src/test/resources/org/opensearch/ml/engine/algorithms/text_embedding/all-MiniLM-L6-v2_torchscript_huggingface.zip?raw=true" + "url": "https://github.com/opensearch-project/ml-commons/tree/2.x/ml-algorithms/src/test/resources/org/opensearch/ml/engine/algorithms/text_embedding/all-MiniLM-L6-v2_torchscript_huggingface.zip?raw=true" } ``` @@ -289,6 +289,6 @@ POST /_plugins/_ml/models/_upload "pooling_mode":"mean", "normalize_result":"true" }, - "url": "https://github.com/ylwu-amzn/ml-commons/raw/2.x_custom_m_helper/ml-algorithms/src/test/resources/org/opensearch/ml/engine/algorithms/text_embedding/all-MiniLM-L6-v2_onnx.zip?raw=true" + "url": "https://github.com/opensearch-project/ml-commons/tree/2.x/ml-algorithms/src/test/resources/org/opensearch/ml/engine/algorithms/text_embedding/all-MiniLM-L6-v2_onnx.zip?raw=true" } ```