Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

multi test dataloaders #370

Merged
merged 1 commit into from
Sep 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions fuse/dl/lightning/pl_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,8 @@ def __init__(
# convert all use-cases to the same format that supports multiple val dataloaders: List[Tuple[str, OrderedDict[str, MetricBase]]]
if isinstance(self._validation_metrics, dict):
self._validation_metrics = [(None, self._validation_metrics)]
if isinstance(self._test_metrics, dict):
self._test_metrics = [(None, self._test_metrics)]

if log_unit not in [None, "optimizer_step", "epoch"]:
raise Exception(f"Error: unexpected log_unit {log_unit}")
Expand Down
Loading