Skip to content

Commit

Permalink
fix: failing dataset level eval failing exp results
Browse files Browse the repository at this point in the history
  • Loading branch information
joschkabraun committed May 29, 2024
1 parent 3ef393a commit c36ee8a
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 c36ee8a

Please sign in to comment.