Update README.md
Browse files
README.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1 |
---
|
2 |
license: mit
|
|
|
|
|
|
|
|
|
3 |
---
|
4 |
|
5 |
# Molecule Detection YOLO in MolParser
|
@@ -13,7 +17,7 @@ We provide several [ultralytics YOLO11]((https://github.com/ultralytics/ultralyt
|
|
13 |

|
14 |
|
15 |
|
16 |
-
## General molecule structure detection models
|
17 |
|
18 |
`moldet_yolo11[size]_640_general.pt`
|
19 |
|
@@ -40,7 +44,7 @@ model = YOLO("moldet_yolo11l_640_general.pt")
|
|
40 |
model.predict("path/to/image.png", save=True, imgsz=640, conf=0.5)
|
41 |
```
|
42 |
|
43 |
-
## PDF molecule structure detection models
|
44 |
|
45 |
`moldet_yolo11[size]_960_doc.pt`
|
46 |
|
@@ -68,4 +72,15 @@ model = YOLO("moldet_yolo11l_960_doc.pt")
|
|
68 |
model.predict("path/to/pdf_page_image.png", save=True, imgsz=960, conf=0.5)
|
69 |
```
|
70 |
|
|
|
71 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: mit
|
3 |
+
base_model:
|
4 |
+
- Ultralytics/YOLO11
|
5 |
+
tags:
|
6 |
+
- chemistry
|
7 |
---
|
8 |
|
9 |
# Molecule Detection YOLO in MolParser
|
|
|
17 |

|
18 |
|
19 |
|
20 |
+
## 1⃣️ [MolDet-General] General molecule structure detection models
|
21 |
|
22 |
`moldet_yolo11[size]_640_general.pt`
|
23 |
|
|
|
44 |
model.predict("path/to/image.png", save=True, imgsz=640, conf=0.5)
|
45 |
```
|
46 |
|
47 |
+
## 2⃣️ [MolDet-Doc] PDF molecule structure detection models
|
48 |
|
49 |
`moldet_yolo11[size]_960_doc.pt`
|
50 |
|
|
|
72 |
model.predict("path/to/pdf_page_image.png", save=True, imgsz=960, conf=0.5)
|
73 |
```
|
74 |
|
75 |
+
## 📖 Citation
|
76 |
|
77 |
+
If you use this model in your work, please cite:
|
78 |
+
|
79 |
+
```
|
80 |
+
@article{fang2024molparser,
|
81 |
+
title={Molparser: End-to-end visual recognition of molecule structures in the wild},
|
82 |
+
author={Fang, Xi and Wang, Jiankun and Cai, Xiaochen and Chen, Shangqian and Yang, Shuwen and Tao, Haoyi and Wang, Nan and Yao, Lin and Zhang, Linfeng and Ke, Guolin},
|
83 |
+
journal={arXiv preprint arXiv:2411.11098},
|
84 |
+
year={2024}
|
85 |
+
}
|
86 |
+
```
|