Skip to content

Commit

Permalink
Back to 3.7 type hints
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Panchenko committed Feb 28, 2024
1 parent bae92ee commit 248d239
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sensai/evaluation/eval_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@ def __init__(self, io_data_dict: Dict[str, InputOutputData], key_name: str = "da
meta_data_dict: Optional[Dict[str, Dict[str, Any]]] = None,
evaluator_params: Optional[Union[RegressionEvaluatorParams, ClassificationEvaluatorParams, Dict[str, Any]]] = None,
cross_validator_params: Optional[Union[VectorModelCrossValidatorParams, Dict[str, Any]]] = None,
test_io_data_dict: Optional[Dict[str, InputOutputData | None]] = None):
test_io_data_dict: Optional[Dict[str, Optional[InputOutputData]]] = None):
"""
:param io_data_dict: a dictionary mapping from names to the data sets with which to evaluate models.
For evaluation or cross-validation, these datasets will usually be split according to the rules
Expand Down

0 comments on commit 248d239

Please sign in to comment.