Skip to content

Commit 4551904

Browse files
JebqJean-Baptiste Oger
authored andcommitted
doc: update CHANGELOG
Signed-off-by: Jean-Baptiste Oger <[email protected]>
1 parent f6ae513 commit 4551904

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
3636
- Replaced usage of `is_datetime_or_timedelta_dtype` with `is_timedelta64_dtype` and `is_datetime64_any_dtype` by @rawwar ([#316](https://github.com/opensearch-project/opensearch-py-ml/pull/316))
3737
- use try-except-else block for handling unexpected exceptions during integration tests by @rawwar([#370](https://github.com/opensearch-project/opensearch-py-ml/pull/370))
3838
- Removed pandas version pin in nox tests by @rawwar ([#368](https://github.com/opensearch-project/opensearch-py-ml/pull/368))
39+
- Fix to ensure `model_id` is only required once when saving a model in `sentencetransformermodel.py` in ([#376](https://github.com/opensearch-project/opensearch-py-ml/pull/376))
40+
- Add a `config_output_path` param in `make_model_config_json` in `sentencetransformermodel.py` to chose where the saving location of the model config json file. ([#376](https://github.com/opensearch-project/opensearch-py-ml/pull/376))
3941

4042
### Fixed
4143
- Enable make_model_config_json to add model description to model config file by @thanawan-atc in ([#203](https://github.com/opensearch-project/opensearch-py-ml/pull/203))

opensearch_py_ml/ml_models/sentencetransformermodel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1149,7 +1149,7 @@ def make_model_config_json(
11491149
model_name: str = None,
11501150
version_number: str = 1,
11511151
model_format: str = "TORCH_SCRIPT",
1152-
config_out_path: str = None,
1152+
config_output_path: str = None,
11531153
model_zip_file_path: str = None,
11541154
embedding_dimension: int = None,
11551155
pooling_mode: str = None,

0 commit comments

Comments
 (0)