ForzaJuve1 commited on
Commit
ebca39c
1 Parent(s): bd26863

Update Integration

Browse files
Files changed (1) hide show
  1. Integration +3 -5
Integration CHANGED
@@ -109,14 +109,12 @@ class Euro2020Dataset(DatasetBuilder):
109
  # Since the final processed dataset is a single CSV file that combines the content from numerous rows to only 51 rows,
110
  # with each row representing the information of each game, I will just use a single 'train' split and no need for test / validation.
111
 
112
- Euro2020_df = Dataset.from_csv("/Users/chuhanguo/Desktop/Winter 2024/STA 663/Euro2020.csv")
113
- train_path = "ForzaJuve1/UEFA_Euro_2020_Data/Euro2020.csv"
114
- Euro2020_df.to_csv(train_path, index = False)
115
-
116
  return [
117
  SplitGenerator(
118
  name="train",
119
- gen_kwargs={"filepath": train_path}
120
  ),
121
  ]
122
 
 
109
  # Since the final processed dataset is a single CSV file that combines the content from numerous rows to only 51 rows,
110
  # with each row representing the information of each game, I will just use a single 'train' split and no need for test / validation.
111
 
112
+ filepath = "/Users/chuhanguo/Desktop/Winter 2024/STA 663/Euro2020.csv"
113
+
 
 
114
  return [
115
  SplitGenerator(
116
  name="train",
117
+ gen_kwargs={"filepath": filepath}
118
  ),
119
  ]
120