Debug dataset loading
Browse files
src/get_results_for_task.py
CHANGED
@@ -17,9 +17,11 @@ from .utils import MD_LINK_PATTERN
|
|
17 |
|
18 |
try:
|
19 |
AVAILABLE_TASKS = get_dataset_config_names(os.environ["DATASET_ID"])
|
20 |
-
except FileNotFoundError:
|
21 |
AVAILABLE_TASKS = []
|
22 |
|
|
|
|
|
23 |
|
24 |
def _get_results_stub() -> pd.DataFrame:
|
25 |
stub_df = pd.DataFrame(
|
|
|
17 |
|
18 |
try:
|
19 |
AVAILABLE_TASKS = get_dataset_config_names(os.environ["DATASET_ID"])
|
20 |
+
except FileNotFoundError as e:
|
21 |
AVAILABLE_TASKS = []
|
22 |
|
23 |
+
logging.info(f'Dataset: {os.environ["DATASET_ID"]}')
|
24 |
+
get_dataset_config_names(os.environ["DATASET_ID"])
|
25 |
|
26 |
def _get_results_stub() -> pd.DataFrame:
|
27 |
stub_df = pd.DataFrame(
|