diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..cd4be73 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,17 @@ +# Changelog + + + +## v0.1.0 (2023-10-18) + +### Feature + +* **embedding_metrics:** Implement BERTScore and MAUVE and add unit tests support ([`04d50ff`](https://github.com/Sagacify/saga-llm-evaluation/commit/04d50ff33b9dd4acf9740b38a159208d5ccce94d)) +* **project:** Add initial structure ([`786afbb`](https://github.com/Sagacify/saga-llm-evaluation/commit/786afbbf86995cdca8ec121e07b25c75ee8b60a3)) + +### Fix + +* **cd:** Change version for python semantic release ([`a84c790`](https://github.com/Sagacify/saga-llm-evaluation/commit/a84c7906b3c6f1c3443e8637a710bd86cbe7c50b)) +* **embedding_metrics:** Add featurize_model_name argument to init for mauve score ([`db39ad3`](https://github.com/Sagacify/saga-llm-evaluation/commit/db39ad31dd226b24956cb39786198900cf937719)) +* **embedding_metrics:** Add tests, attempt to fix libcublas and move pytest to dev dependencies ([`1d45ec8`](https://github.com/Sagacify/saga-llm-evaluation/commit/1d45ec88ee9c97b80888cfe7e9561b4b51ae0f8d)) +* **embedding_metrics:** Change default models for bertscore and mauve ([`8e9a20d`](https://github.com/Sagacify/saga-llm-evaluation/commit/8e9a20d1484cc597f8370ac4036e386c418f045a)) diff --git a/pyproject.toml b/pyproject.toml index 839f1fb..65289b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "saga_llm_evaluation_ml" -version = "0.0.0" +version = "0.1.0" description = "" authors = ["Leonardo Remondini "] diff --git a/saga_llm_evaluation_ml/__init__.py b/saga_llm_evaluation_ml/__init__.py index 6c8e6b9..3dc1f76 100644 --- a/saga_llm_evaluation_ml/__init__.py +++ b/saga_llm_evaluation_ml/__init__.py @@ -1 +1 @@ -__version__ = "0.0.0" +__version__ = "0.1.0"