removed 0xa0 char from code
Browse files
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 |
-
|
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
|