changed variable name
Browse files- numerical_reasoning.py +3 -3
numerical_reasoning.py
CHANGED
|
@@ -149,9 +149,9 @@ class NewDataset(datasets.GeneratorBasedBuilder):
|
|
| 149 |
time_unit = "decades"
|
| 150 |
multiplier = 10
|
| 151 |
|
| 152 |
-
for key,
|
| 153 |
yield key, {
|
| 154 |
-
"
|
| 155 |
"time_unit": time_unit,
|
| 156 |
-
"y": multiplier*
|
| 157 |
}
|
|
|
|
| 149 |
time_unit = "decades"
|
| 150 |
multiplier = 10
|
| 151 |
|
| 152 |
+
for key, x in enumerate(range(0, 100)):
|
| 153 |
yield key, {
|
| 154 |
+
"x": x,
|
| 155 |
"time_unit": time_unit,
|
| 156 |
+
"y": multiplier*x,
|
| 157 |
}
|