pietrolesci commited on
Commit
fbd6fcc
1 Parent(s): 07695d5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -1
README.md CHANGED
@@ -26,7 +26,8 @@ from pathlib import Path
26
 
27
  # load data
28
  ds = {}
29
- for i in path.rglob("<path to folder>/*.jsonl"):
 
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()