Datasets:

Languages:
English
Multilinguality:
monolingual
Size Categories:
1K<n<10K
Language Creators:
found
Annotations Creators:
expert-generated
Tags:
License:
fgrezes commited on
Commit
bf21434
1 Parent(s): a8bc1df

fixed hard spaces in python code indent

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -50,7 +50,7 @@ How to load the data:
50
  ```
51
  import json
52
  with open("./WIESP2022-NER-DEV.jsonl", 'r') as f:
53
- wiesp_dev_json = [json.loads(l) for l in list(f)]
54
  ```
55
  - into Huggingface (as a Huggingface Dataset):
56
  ```
 
50
  ```
51
  import json
52
  with open("./WIESP2022-NER-DEV.jsonl", 'r') as f:
53
+     wiesp_dev_json = [json.loads(l) for l in list(f)]
54
  ```
55
  - into Huggingface (as a Huggingface Dataset):
56
  ```