pietrolesci
commited on
Commit
•
fbd6fcc
1
Parent(s):
07695d5
Update README.md
Browse files
README.md
CHANGED
@@ -26,7 +26,8 @@ from pathlib import Path
|
|
26 |
|
27 |
# load data
|
28 |
ds = {}
|
29 |
-
|
|
|
30 |
print(i)
|
31 |
name = str(i).split("/")[0].lower()
|
32 |
dtype = str(i).split("/")[1].lower()
|
|
|
26 |
|
27 |
# load data
|
28 |
ds = {}
|
29 |
+
path = Path("<path to folder>")
|
30 |
+
for i in path.rglob("*.jsonl"):
|
31 |
print(i)
|
32 |
name = str(i).split("/")[0].lower()
|
33 |
dtype = str(i).split("/")[1].lower()
|