Update bikes.py
Browse files
bikes.py
CHANGED
|
@@ -79,11 +79,11 @@ class bikes(datasets.GeneratorBasedBuilder):
|
|
| 79 |
"label": row["label"],
|
| 80 |
}
|
| 81 |
else:
|
| 82 |
-
|
| 83 |
-
|
| 84 |
-
|
| 85 |
-
|
| 86 |
-
|
| 87 |
-
|
| 88 |
-
|
| 89 |
-
|
|
|
|
| 79 |
"label": row["label"],
|
| 80 |
}
|
| 81 |
else:
|
| 82 |
+
yield i, {
|
| 83 |
+
"id": row["id"],
|
| 84 |
+
"bike_name": row["bike_name"],
|
| 85 |
+
"city_posted": row["city_posted"],
|
| 86 |
+
"km_driven": row["km_driven"],
|
| 87 |
+
"price": row["price"],
|
| 88 |
+
"color": row["color"],
|
| 89 |
+
}
|