Skip to content

Commit 44c5d7f

Browse files
kiramcleanAndrewq11cwognum
authored
Feat/competition/eval (#114)
* integrating results for comps * Update polaris/hub/client.py Co-authored-by: Cas Wognum <[email protected]> * addressing comments & adding CompetitionResults class * test competition evalution works for multi-column dataframes * add single column test to competition evaluation * fix multitask-single-test-set cases * fix bug with multi-test-set benchmarks * adding functions to serialize & deserialize pred objs for external eval * updating return for evaluate_competition method in client * updating evaluate_competition method to pass additional result info to hub * refuse early to upload a competition with a zarr-based dataset * removing merge conflicts --------- Co-authored-by: Andrew Quirke <[email protected]> Co-authored-by: Andrew Quirke <[email protected]> Co-authored-by: Cas Wognum <[email protected]>
1 parent a4cfcbe commit 44c5d7f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

polaris/hub/client.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -799,6 +799,10 @@ def upload_competition(
799799
"""
800800
ACCESS = "private"
801801

802+
if competition.dataset.zarr_root is not None:
803+
logger.info("Zarr-based competitions are not supported at this time")
804+
return
805+
802806
# Upload competition dataset
803807
dataset_response = self._upload_dataset(
804808
competition.dataset, ArtifactType.COMPETITION.value, ACCESS, timeout, owner, if_exists

0 commit comments

Comments
 (0)