From 1b8807a5ad8fbbae7880e0d2ccf68e010f3f535b Mon Sep 17 00:00:00 2001 From: Johannes Wesch Date: Mon, 27 May 2024 14:56:18 +0200 Subject: [PATCH] update changelog --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ecf9d4f55..0e3a05ea4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,8 +11,8 @@ - Accessing a single trace from a `PersistentTracer.trace()` is no longer supported, as the user does not have access to the `trace_id` anyway. The function is now called `traces` and returns all available traces for a tracer. - `InMemoryTracer` and derivatives are no longer `pydantic.BaseModel`. Use the `export_for_viewing` function to export a serializable representation of the trace. - We updated the graders to support python 3.12 and moved away from `nltk`-package: - - `BleuGrader` and `RougeGrader` now use the `evaluate`-package from HuggingFace. - - `RougeGrader` now returns f1-score `float` instead of previously `FScores`. + - `BleuGrader` now uses `sacrebleu`-package. + - `RougeGrader` now uses the `rouge_score`-package. ### New Features - Add `how_to_implement_incremental_evaluation`.