Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Debugging on CI with print
  • Loading branch information
PGijsbers authored Mar 1, 2021
commit 56137a1eba9f5fbd563eedb87c3429131aa9d99c
4 changes: 3 additions & 1 deletion openml/datasets/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,9 @@ def _cache_compressed_file_from_file(
try:
data = pd.read_parquet(data_file)
except Exception as e:
raise Exception(f"File: {data_file}") from e
print(data_file)
raise e
# raise Exception(f"File: {data_file}") from e

categorical = [data[c].dtype.name == "category" for c in data.columns]
attribute_names = list(data.columns)
Expand Down