File size: 160 Bytes
ba222f8 |
1 2 3 4 5 6 7 8 |
import json
with open("synthetic_data.jsonl", "r") as infile:
for line in infile:
data = json.loads(line)
print(data) # Verify structure
|
ba222f8 |
1 2 3 4 5 6 7 8 |
import json
with open("synthetic_data.jsonl", "r") as infile:
for line in infile:
data = json.loads(line)
print(data) # Verify structure
|