Skip to content

Commit

Permalink
Merge pull request #912 from parea-ai/fix-datset-level-eval-fail-exp
Browse files Browse the repository at this point in the history
fix: failing dataset level eval failing exp results
  • Loading branch information
joschkabraun committed May 29, 2024
2 parents a790e1b + c36ee8a commit 310c2f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions parea/experiment/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ def apply_dataset_eval(dataset_level_evals: List[Callable]) -> List[EvaluationRe
except Exception as e:
logger.exception(f"Error occurred calling dataset level eval function '{dataset_level_eval.__name__}': {e}", exc_info=e)
continue
if result is None:
continue

if isinstance(result, EvaluationResult):
results.append(result)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "parea-ai"
packages = [{ include = "parea" }]
version = "0.2.162"
version = "0.2.163"
description = "Parea python sdk"
readme = "README.md"
authors = ["joel-parea-ai <[email protected]>"]
Expand Down

0 comments on commit 310c2f7

Please sign in to comment.