ninarg commited on
Commit
2c10ab1
·
verified ·
1 Parent(s): 2372caa

Fix dataset loading after config metadata fix

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -26,7 +26,7 @@ def load_data():
26
  """Load the VynFi OCEL dataset from HuggingFace."""
27
  from datasets import load_dataset
28
 
29
- ds = load_dataset("VynFi/vynfi-supply-chain-ocel", "events", split="train")
30
  df = ds.to_pandas()
31
  if "timestamp" in df.columns:
32
  df["timestamp"] = pd.to_datetime(df["timestamp"], errors="coerce")
 
26
  """Load the VynFi OCEL dataset from HuggingFace."""
27
  from datasets import load_dataset
28
 
29
+ ds = load_dataset("VynFi/vynfi-supply-chain-ocel", "events", split="train", download_mode="force_redownload")
30
  df = ds.to_pandas()
31
  if "timestamp" in df.columns:
32
  df["timestamp"] = pd.to_datetime(df["timestamp"], errors="coerce")