Skip to content

Commit

Permalink
Move source dataset files for entity_data_imputation to GCS (#2750)
Browse files Browse the repository at this point in the history
  • Loading branch information
yifanmai authored Jun 17, 2024
1 parent 37e7aa0 commit 1991502
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions src/helm/benchmark/scenarios/entity_data_imputation_scenario.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,14 @@ class EntityDataImputationScenario(Scenario):
def __init__(self, dataset: str, seed: int = 1234):
super().__init__()
self.datasets_paths = {
"Buy": "https://dbs.uni-leipzig.de/file/Abt-Buy.zip",
"Restaurant": "https://www.cs.utexas.edu/users/ml/riddle/data/restaurant.tar.gz",
"Buy": (
"https://storage.googleapis.com/crfm-helm-public/source_datasets/scenarios/"
"entity_data_imputation/Abt-Buy.zip"
),
"Restaurant": (
"https://storage.googleapis.com/crfm-helm-public/source_datasets/scenarios/"
"entity_data_imputation/restaurant.tar.gz"
),
}
# Columns to impute
self.datasets_impute_col = {
Expand Down

0 comments on commit 1991502

Please sign in to comment.