xx103 commited on
Commit
10e41ee
1 Parent(s): 283bd7d
NYC_Motor_Vehicle_Collisions_and_Weather_Dataset.py CHANGED
@@ -73,7 +73,8 @@ class NYCMotorVehicleCollisionsWeatherDataset(datasets.GeneratorBasedBuilder):
73
  ),
74
  ]
75
 
76
- }
 
77
  def _generate_examples(self, filepath):
78
  with open(filepath, encoding="utf-8") as f:
79
  for key, line in enumerate(f): # Corrected variable name here
@@ -99,3 +100,4 @@ class NYCMotorVehicleCollisionsWeatherDataset(datasets.GeneratorBasedBuilder):
99
  "temp_min": row.get("temp_min", None),
100
  }
101
 
 
 
73
  ),
74
  ]
75
 
76
+
77
+
78
  def _generate_examples(self, filepath):
79
  with open(filepath, encoding="utf-8") as f:
80
  for key, line in enumerate(f): # Corrected variable name here
 
100
  "temp_min": row.get("temp_min", None),
101
  }
102
 
103
+