ForzaJuve1 commited on
Commit
7efeec4
1 Parent(s): ca0cd5e

Update Integration.py

Browse files
Files changed (1) hide show
  1. Integration.py +2 -2
Integration.py CHANGED
@@ -539,8 +539,8 @@ class Euro2020Dataset(DatasetBuilder):
539
  ),
540
  ]
541
 
542
- def _generate_examples(self):
543
- data = pd.read_csv("https://huggingface.co/ForzaJuve1/whatever/blob/main/Euro2020.csv")
544
  for idx, row in data.iterrows():
545
  yield idx, {
546
  "HomeTeamName": row["HomeTeamName"],
 
539
  ),
540
  ]
541
 
542
+ def _generate_examples(self, filepath):
543
+ data = pd.read_csv(filepath)
544
  for idx, row in data.iterrows():
545
  yield idx, {
546
  "HomeTeamName": row["HomeTeamName"],