πwπ
Browse files
app.py
CHANGED
|
@@ -35,7 +35,7 @@ i = 0
|
|
| 35 |
for i, entry in enumerate(dataset):
|
| 36 |
# each entry has the following columns
|
| 37 |
# ['id', 'url', 'title', 'text']
|
| 38 |
-
data.add_item(entry)
|
| 39 |
if i == 3000:
|
| 40 |
break
|
| 41 |
# free memory
|
|
|
|
| 35 |
for i, entry in enumerate(dataset):
|
| 36 |
# each entry has the following columns
|
| 37 |
# ['id', 'url', 'title', 'text']
|
| 38 |
+
data = data.add_item(entry)
|
| 39 |
if i == 3000:
|
| 40 |
break
|
| 41 |
# free memory
|