lukasbraach
commited on
Commit
•
a5a0df3
1
Parent(s):
4feab23
upd: debug log – sharding problem..?
Browse files
rwth_phoenix_weather_2014.py
CHANGED
@@ -149,6 +149,10 @@ class RWTHPhoenixWeather2014(datasets.GeneratorBasedBuilder):
|
|
149 |
]
|
150 |
|
151 |
def _generate_examples(self, example_ids, annotations, frames):
|
|
|
|
|
|
|
|
|
152 |
for key, (idx, annotation, frames_list) in enumerate(zip(example_ids, annotations, frames)):
|
153 |
result = {
|
154 |
"id": idx,
|
|
|
149 |
]
|
150 |
|
151 |
def _generate_examples(self, example_ids, annotations, frames):
|
152 |
+
print(f"example_ids len: {len(example_ids)}")
|
153 |
+
print(f"annotations len: {len(annotations)}")
|
154 |
+
print(f"frames len: {len(frames)}")
|
155 |
+
|
156 |
for key, (idx, annotation, frames_list) in enumerate(zip(example_ids, annotations, frames)):
|
157 |
result = {
|
158 |
"id": idx,
|