diff --git a/CHANGELOG.md b/CHANGELOG.md index e66d35ce1..8288d40c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 1.2.0 We did a major revamp of the `ArgillaEvaluator` to separate an `AsyncEvaluator` from the normal evaluation scenario. This comes with easier to understand interfaces, more information in the `EvaluationOverview` and a simplified aggregation step for Argilla that is no longer dependent on specific Argilla types. @@ -18,7 +18,6 @@ Check the how-to for detailed information [here](./src/documentation/how_tos/how - rename: `start` is now called `start_date` and no longer optional - we refactored the internals of `Evaluator`. This is only relevant if you subclass from it. Most of the typing and data handling is moved to `EvaluatorBase` - ### New Features - Add `ComparisonEvaluation` for the elo evaluation to abstract from the Argilla record - Add `AsyncEvaluator` for human-feedback evaluation. `ArgillaEvaluator` inherits from this @@ -28,15 +27,10 @@ Check the how-to for detailed information [here](./src/documentation/how_tos/how - Add `AsyncEvaluationRepository` to store and retrieve `PartialEvaluationOverview`. Also added `AsyncFileEvaluationRepository` and `AsyncInMemoryEvaluationRepository` - Add `EvaluatorBase` and `EvaluationLogicBase` for base classes for both async and synchronous evaluation. - - ### Fixes - Improve description of using artifactory tokens for installation of IL - Change `confusion_matrix` in `SingleLabelClassifyAggregationLogic` such that it can be persisted in a file repository -### Deprecations -... - ## 1.1.0 ### New Features diff --git a/pyproject.toml b/pyproject.toml index 78034cd49..bddcaee62 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "intelligence-layer" -version = "1.1.0" +version = "1.2.0" description = "" authors = ["Aleph Alpha Engineering "] readme = "README.md"