fgrezes commited on
Commit
ca0faf8
1 Parent(s): cfc297d

removed 0xa0 char from code

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -47,7 +47,7 @@ How to load the data if you cloned the repository locally:
47
  ```python
48
  import json
49
  with open("./FOCAL-TRAINING.jsonl", 'r') as f:
50
-     focal_training_from_json = [json.loads(l) for l in list(f)]
51
  ```
52
  - into Huggingface (as a Huggingface Dataset):
53
  ```python
 
47
  ```python
48
  import json
49
  with open("./FOCAL-TRAINING.jsonl", 'r') as f:
50
+ focal_training_from_json = [json.loads(l) for l in list(f)]
51
  ```
52
  - into Huggingface (as a Huggingface Dataset):
53
  ```python