test
Browse files- test → test.py +1 -0
test → test.py
RENAMED
@@ -84,4 +84,5 @@ class Test(datasets.GeneratorBasedBuilder):
|
|
84 |
with open(filepath, encoding="utf-8") as f:
|
85 |
df = pd.read_csv(filepath, index_col=0)
|
86 |
for id_, item in df.iterrows():
|
|
|
87 |
yield id_, item.to_dict()
|
|
|
84 |
with open(filepath, encoding="utf-8") as f:
|
85 |
df = pd.read_csv(filepath, index_col=0)
|
86 |
for id_, item in df.iterrows():
|
87 |
+
set_trace()
|
88 |
yield id_, item.to_dict()
|