|
# PMC-OA 数据集 |
|
|
|
[English Documentation](./README.zh.md) |
|
|
|
- [PMC-OA 数据集](#pmc-oa-数据集) |
|
- [数据集结构](#数据集结构) |
|
- [样本](#样本) |
|
|
|
## 数据集结构 |
|
|
|
**PMC-OA** (分开的子图, 子图对应的文本). |
|
- `train.jsonl`: 训练集 |
|
- `valid.jsonl`: 验证集 |
|
- `test.jsonl`: 测试集 |
|
- `images.zip`: 图像文件夹 |
|
|
|
**PMC-OA Beta** 数据集中包含的图像文本对是 (分开的子图, 复合图对应的文本). |
|
|
|
## 样本 |
|
|
|
`train.jsonl` 中的某一行为: |
|
|
|
```python |
|
{ |
|
"image": "PMC212319_Fig3_4.jpg", |
|
"caption": "A. Real time image of the translocation of ARF1-GFP to the plasma membrane ...", |
|
"pmcid": "PMC212319", |
|
"url_name": "1471-2121-4-13-3.jpg" |
|
} |
|
``` |
|
|
|
每个字段的解释 |
|
|
|
- image: 图片路径 |
|
- caption: 对应文本 |
|
- pmcid: 图片出处文章的 PMCID |
|
- url_name: 图片在网页链接中的名字 |
|
|
|
|