diff --git a/CHANGELOG.md b/CHANGELOG.md index 900a0216..d80d41d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) - Make the model tracing-uploading-releasing workflow fail early for ≥2GB model by @thanawan-atc ([#258](https://github.com/opensearch-project/opensearch-py-ml/pull/258)) - Rename model/model-listing workflows by @thanawan-atc ([#260](https://github.com/opensearch-project/opensearch-py-ml/pull/260)) - Update pretrained_models_all_versions.json (2023-08-30 14:07:38) by @dhrubo-os ([#264](https://github.com/opensearch-project/opensearch-py-ml/pull/264)) +- Update model upload history - sentence-transformers/msmarco-distilbert-base-tas-b (v.1.0.2)(BOTH) by @dhrubo-os ([#272](https://github.com/opensearch-project/opensearch-py-ml/pull/272)) - Enable model listing workflow to exclude old 1.0.0 models from the generated model listing by @thanawan-atc ([#265](https://github.com/opensearch-project/opensearch-py-ml/pull/265)) - Have model upload workflow require approval from two code maintainers by @thanawan-atc ([#273](https://github.com/opensearch-project/opensearch-py-ml/pull/273)) - Update pretrained_models_all_versions.json (2023-09-08 13:14:07) by @dhrubo-os ([#277](https://github.com/opensearch-project/opensearch-py-ml/pull/277)) diff --git a/utils/model_uploader/upload_history/MODEL_UPLOAD_HISTORY.md b/utils/model_uploader/upload_history/MODEL_UPLOAD_HISTORY.md new file mode 100644 index 00000000..2640a0a8 --- /dev/null +++ b/utils/model_uploader/upload_history/MODEL_UPLOAD_HISTORY.md @@ -0,0 +1,20 @@ +# Pretrained Model Upload History + +The model-serving framework supports a variety of open-source pretrained models that can assist with a range of machine learning (ML) search and analytics use cases. + + +## Uploaded Pretrained Models + + +### Sentence transformers + +Sentence transformer models map sentences and paragraphs across a dimensional dense vector space. The number of vectors depends on the model. Use these models for use cases such as clustering and semantic search. + +The following table shows sentence transformer model upload history. + +[//]: # (This may be the most platform independent comment) + +|Upload Time|Model Uploader|Model ID|Model Version|Model Format|Embedding Dimension|Pooling Mode|Workflow Run ID| +| :---: | :---: | :---: | :---: | :---: | :---: | :---: | :---: | +|2023-08-31 15:22:19|@dhrubo-os|`sentence-transformers/msmarco-distilbert-base-tas-b`|1.0.2|ONNX|N/A|N/A|6042401385| +|2023-08-31 15:22:19|@dhrubo-os|`sentence-transformers/msmarco-distilbert-base-tas-b`|1.0.2|TORCH_SCRIPT|N/A|N/A|6042401385| diff --git a/utils/model_uploader/upload_history/supported_models.json b/utils/model_uploader/upload_history/supported_models.json new file mode 100644 index 00000000..b81422ae --- /dev/null +++ b/utils/model_uploader/upload_history/supported_models.json @@ -0,0 +1,22 @@ +[ + { + "Model Uploader": "@dhrubo-os", + "Upload Time": "2023-08-31 15:22:19", + "Model ID": "sentence-transformers/msmarco-distilbert-base-tas-b", + "Model Version": "1.0.2", + "Model Format": "ONNX", + "Embedding Dimension": "N/A", + "Pooling Mode": "N/A", + "Workflow Run ID": "6042401385" + }, + { + "Model Uploader": "@dhrubo-os", + "Upload Time": "2023-08-31 15:22:19", + "Model ID": "sentence-transformers/msmarco-distilbert-base-tas-b", + "Model Version": "1.0.2", + "Model Format": "TORCH_SCRIPT", + "Embedding Dimension": "N/A", + "Pooling Mode": "N/A", + "Workflow Run ID": "6042401385" + } +] \ No newline at end of file