KISTI-AIDATA
commited on
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,45 @@
|
|
1 |
-
---
|
2 |
-
license: cc-by-nc-nd-4.0
|
3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: cc-by-nc-nd-4.0
|
3 |
+
---
|
4 |
+
|
5 |
+
# 논문 메타데이터 추출 데이터(Extraction data from paper metadata)
|
6 |
+
|
7 |
+
## Outline
|
8 |
+
- The data for extracting metadata from PDF domestic papers.
|
9 |
+
- The data contains information in layout box extracted from each PDF paper with labels corresponding to metadata field types.
|
10 |
+
- The information in each layout box are unique code, text, coordinates(x0, y0, x1, y1) of box, width of box, height of box and font size.
|
11 |
+
- The file named as “train.txt” was constructed through the fully automatic inspection process. It contains a total of 5,241,746 labeled layout boxes for 295,306 papers in 503 journals. It was used as train set.
|
12 |
+
- The file named as “valid.txt” was developed through the manual inspection process by several annotators. It contains a total of 155,629 labeled layout boxes for 9,895 papers in 503 journals.
|
13 |
+
- The file named as “test.txt” was built through the manual inspection process. It contains a total of 159,925 labeled layout boxes for 10,119 papers in 503 journals. It was used as test set.
|
14 |
+
|
15 |
+
## Data format(TXT)
|
16 |
+
- In the files, each layout box is separated by a newline. And each paper is separated by two newlines
|
17 |
+
- The data structure of each layout box is as follows :
|
18 |
+
"Unique code"(\t)"Metadata label"(\t)"Text"(\t)"x0 value "(\s)"y0 value"(\s)"x1value"(\s)"y1value"(\s)"width value" (\s)"height value"(\s)"font size"
|
19 |
+
|
20 |
+
|No.|Metadata Fields|Label|
|
21 |
+
|--|--|--|
|
22 |
+
|1|Title(in Korean)|title_ko|
|
23 |
+
|2|Title(in English)|title_en|
|
24 |
+
|3|Author Name(in Korean)|author_name_ko|
|
25 |
+
|4|Author Name(in English)|author_name_en|
|
26 |
+
|5|Author Affiliation(in Korean)|ko_org|
|
27 |
+
|6|Author Affiliation(in English)|en_org|
|
28 |
+
|7|Abstract(in Korean)|abstract_ko|
|
29 |
+
|8|Abstract(in English)|abstract_en|
|
30 |
+
|9|Keywords(in Korean)|kwds_ko|
|
31 |
+
|10|Keywords(in English)|kwds_en|
|
32 |
+
|11|DOI|doi|
|
33 |
+
|12|Journal name|journal|
|
34 |
+
|13|Out of Boundary|O|
|
35 |
+
|
36 |
+
## Data statistics
|
37 |
+
|Data|File name|#Journal|#Paper|#Layout Box|
|
38 |
+
|--|--|--|--|--|
|
39 |
+
|Train set|train.txt|503|295,306|5,241,746 |
|
40 |
+
|Valid set|valid.txt|503|9,895|155,629|
|
41 |
+
|Test set|test.txt|503|10,119|159,925|
|
42 |
+
|
43 |
+
|
44 |
+
## Data download
|
45 |
+
http://doi.org/10.23057/48
|