我正在尝试在 Python中读取 JSON 文件(BioRelEx 数据集: https ://github.com/YerevaNN/BioRelEx/releases/tag/1.0alpha7)。JSON 文件是一个对象列表,每个句子一个。这就是我尝试这样做的方式:
def _read(self, file_path):
with open(cached_path(file_path), "r") as data_file:
for line in data_file.readlines():
if not line:
continue
items = json.loads(lines)
text = items["text"]
label = items.get("label")
我的代码在items = json.loads(line)
. 看起来数据没有像代码预期的那样格式化,但我该如何更改呢?
在此先感谢您的时间!
最好的,
朱莉娅