File size: 65,064 Bytes
6fa4bc9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 | {
"paper_id": "2020",
"header": {
"generated_with": "S2ORC 1.0.0",
"date_generated": "2023-01-19T13:05:01.474202Z"
},
"title": "Leveraging the Inherent Hierarchy of Vacancy Titles for Automated Job Ontology Expansion",
"authors": [
{
"first": "Jeroen",
"middle": [],
"last": "Van Hautte",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "TechWolf",
"location": {
"country": "Belgium"
}
},
"email": "jeroen@techwolf.be"
},
{
"first": "Vincent",
"middle": [],
"last": "Schelstraete",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "TechWolf",
"location": {
"country": "Belgium"
}
},
"email": "vincent@techwolf.be"
},
{
"first": "Mika\u00ebl",
"middle": [],
"last": "Wornoo",
"suffix": "",
"affiliation": {
"laboratory": "",
"institution": "TechWolf",
"location": {
"country": "Belgium"
}
},
"email": ""
}
],
"year": "",
"venue": null,
"identifiers": {},
"abstract": "Machine learning plays an ever-bigger part in online recruitment, powering intelligent matchmaking and job recommendations across many of the world's largest job platforms. However, the main text is rarely enough to fully understand a job posting: more often than not, much of the required information is condensed into the job title. Several organised efforts have been made to map job titles onto a handmade knowledge base as to provide this information, but these only cover around 60% of online vacancies. We introduce a novel, purely data-driven approach towards the detection of new job titles. Our method is conceptually simple, extremely efficient and competitive with traditional NER-based approaches. Although the standalone application of our method does not outperform a finetuned BERT model, it can be applied as a preprocessing step as well, substantially boosting accuracy across several architectures.",
"pdf_parse": {
"paper_id": "2020",
"_pdf_hash": "",
"abstract": [
{
"text": "Machine learning plays an ever-bigger part in online recruitment, powering intelligent matchmaking and job recommendations across many of the world's largest job platforms. However, the main text is rarely enough to fully understand a job posting: more often than not, much of the required information is condensed into the job title. Several organised efforts have been made to map job titles onto a handmade knowledge base as to provide this information, but these only cover around 60% of online vacancies. We introduce a novel, purely data-driven approach towards the detection of new job titles. Our method is conceptually simple, extremely efficient and competitive with traditional NER-based approaches. Although the standalone application of our method does not outperform a finetuned BERT model, it can be applied as a preprocessing step as well, substantially boosting accuracy across several architectures.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Abstract",
"sec_num": null
}
],
"body_text": [
{
"text": "Following the advent of online recruitment, the job market is evolving increasingly towards AI-driven personalised treatment of job seekers (le Vrang et al., 2014) . This personalisation is typically powered through the combination of machine learning models with extensive knowledge bases, developed both in the private (Zhao et al., 2015; Neculoiu et al., 2016) and public (le Vrang et al., 2014; De Smedt et al., 2015) sector. In this setup, ontologies serve an important function: just like real-life job seekers start with a rough estimate of a given vacancy based on its title, job ontologies provide a similar estimate for thousands of job titles. As vacancies often do not describe the full job contents, but rather provide details on top of the background information contained in this estimate, this allows for a richer and more complete view of the job posting at hand.",
"cite_spans": [
{
"start": 140,
"end": 163,
"text": "(le Vrang et al., 2014)",
"ref_id": "BIBREF3"
},
{
"start": 321,
"end": 340,
"text": "(Zhao et al., 2015;",
"ref_id": "BIBREF11"
},
{
"start": 341,
"end": 363,
"text": "Neculoiu et al., 2016)",
"ref_id": "BIBREF4"
},
{
"start": 375,
"end": 398,
"text": "(le Vrang et al., 2014;",
"ref_id": "BIBREF3"
},
{
"start": 399,
"end": 421,
"text": "De Smedt et al., 2015)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1."
},
{
"text": "Many of the taxonomies in use today are curated by hand, as opposed to being data-driven -this allows for overall high quality and carefully considered structure. However, even with great effort their coverage of the job market is still limited. For example, the ESCO taxonomy (ESCO, 2017) only covers around 60% of all job postings available in English, with coverage for other languages often being substantially lower. This disadvantage is typically remedied with machine learning based approaches: an embedding is calculated for any given vacancy title, after which the nearest neighbour among the titles in the knowledge base is selected (Neculoiu et al., 2016) . While this technique generally works well, it has a crucial weakness: if the job title at hand is conceptually new (or unknown), it can never be mapped onto the knowledge base correctly. As such, any blind spot of the curators can be the direct cause of errors made by the system. With occupations and skills changing faster than ever, such a setup cannot be kept up to date by hand, even with extensive resources.",
"cite_spans": [
{
"start": 643,
"end": 666,
"text": "(Neculoiu et al., 2016)",
"ref_id": "BIBREF4"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1."
},
{
"text": "Instead of building knowledge bases by hand, it is also pos- sible to leverage the massive amount of data produced by online recruitment. More precisely, new job titles can be detected from the stream of vacancy titles. 1 This problem translates to a typical named entity recognition (NER) setup. While this purely NLP-based approach is often effective, it also largely ignores the underlying structure that holds for job titles. In this paper, we introduce a novel datadriven approach that, using only a large set of vacancy titles, is competitive with conventional neural network-based NER methods. Furthermore, our method can be combined both with these models to gain a substantial performance boost. Our approach is intuitive, lightweight and orders of magnitude faster than competitive models. Each occupation has a preferred and alternative labels, a description and a list of optional and essential skills, competences and knowledge.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Introduction",
"sec_num": "1."
},
{
"text": "The European Skills, Competences, Qualifications and Occupations taxonomy (ESCO, 2017) is a handcrafted ontology connecting jobs and skills. It is available in 27 languages and covers close to 3000 distinct occupations, as well as more than 13000 skills. ESCO is funded by the European Commission and is under continuous, active development by its Directorate-General for Employment, Social Affairs and Inclusion. This paper uses version 1.0.3 of the ESCO Classification. Figure 2 shows an example of an occupation profile -our setup makes use of the preferred label and alternative labels for each occupation.",
"cite_spans": [],
"ref_spans": [
{
"start": 472,
"end": 480,
"text": "Figure 2",
"ref_id": "FIGREF2"
}
],
"eq_spans": [],
"section": "Job & Skill Ontologies",
"sec_num": "2.1."
},
{
"text": "While ESCO seeks to model occupations and competences at a European level, there are also many alternatives. Each of these has a similar underlying idea, but a different scope or execution strategy. For example, the United States has its O*NET classification (Peterson et al., 2001) , while France has the ROME standard and the Flemish employment agency VDAB has its own, ROME-based competency standard Competent. Although the experts composing these ontologies leverage data to compose their standards, none of them is data-driven: instead, occupation profiles are typically determined per sector by relevant experts.",
"cite_spans": [
{
"start": 259,
"end": 282,
"text": "(Peterson et al., 2001)",
"ref_id": "BIBREF7"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Job & Skill Ontologies",
"sec_num": "2.1."
},
{
"text": "We compare and combine our novel method with two Named Entity Recognition models: an Iterated Dilated Convolutional Neural Network (ID-CNN) (Strubell et al., 2017) as implemented in SpaCy (Honnibal and Montani, 2017 ) and a fine-tuned BERT model (Devlin et al., 2019) based on the popular transformers library (Wolf et al., 2019) . In both cases, we make use of an IOB named entity tagging scheme.",
"cite_spans": [
{
"start": 140,
"end": 163,
"text": "(Strubell et al., 2017)",
"ref_id": "BIBREF8"
},
{
"start": 188,
"end": 215,
"text": "(Honnibal and Montani, 2017",
"ref_id": "BIBREF1"
},
{
"start": 310,
"end": 329,
"text": "(Wolf et al., 2019)",
"ref_id": "BIBREF10"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "NER Models",
"sec_num": "2.2."
},
{
"text": "Finding new job titles in a stream of vacancy titles is a form of automatic term recognition. However, typically this field focuses on finding terminology inside long, grammatical documents rather than titles. Frantzi et al. (1998) use statistical properties of domain-specific language to detect terms in a corpus using their C-value technique. An important principle leveraged in their work is the occurrence of nested terms: terms tend to occur in other, longer terms (as a substring). A useful term is then characterised by its 'independence' from longer terms: if something can be used as a term independently, it typically occurs in a larger number of different longer phrases. Since its publication, the C-value/NC-value technique has been applied broadly for detection of multiword expressions, as well as ontology population and expansion based on free text (Petasis et al., 2011). Lexical inclusion relations have also been found to account for a substantial part of hierarchical relations among medical concepts (Grabar and Zweigenbaum, 2002) , showing that these principles can be leveraged to construct an accurate hierarchy at a relatively low computational cost.",
"cite_spans": [
{
"start": 210,
"end": 231,
"text": "Frantzi et al. (1998)",
"ref_id": null
},
{
"start": 1023,
"end": 1053,
"text": "(Grabar and Zweigenbaum, 2002)",
"ref_id": "BIBREF0"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Automatic Term Recognition",
"sec_num": "2.3."
},
{
"text": "Detecting new job titles and assigning job titles to existing classes are two closely related problems. However, as ontologies have largely been composed manually, the focus of most relevant research has been on the latter: instead of using machine learning to build a structure, the techniques are leveraged to position new samples inside the existing hierarchy. For example, Javed et al. (2016) use a hierarchical classification system to link job titles to the O*NET classification, using the Lingo algorithm (Osinski and Weiss, 2005) to generate a title hierarchy, after which the formed clusters are assigned to different O*NET concepts. Building upon this work, Wang et al. (2019) use a single end-to-end multistream CNN architecture to classify titles, leveraging both vacancy titles and descriptions. Neculoiu et al. (2016) , using a different approach, train a siamese neural network to specifically embed vacancy titles in such a way that relevant job title information is prioritised. This network is then used to map titles onto a proprietary ontology. As related work is generally closed-source, only has a high-level description or does not include an evaluation dataset, we are unable to compare our work with it directly.",
"cite_spans": [
{
"start": 512,
"end": 537,
"text": "(Osinski and Weiss, 2005)",
"ref_id": "BIBREF5"
},
{
"start": 809,
"end": 831,
"text": "Neculoiu et al. (2016)",
"ref_id": "BIBREF4"
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Job Title Detection & Classification",
"sec_num": "2.4."
},
{
"text": "For this inquiry, we define a job title for a vacancy to be the minimal subspan of the vacancy title that is needed to determine to which occupation inside ESCO it can be linked. For example, for a vacancy titled \"Senior HR Manager at CompanyX\", the job title would be \"HR Manager\". Modifiers to the job title that concern seniority, practical details or other information are not needed to classify a job within ESCO, as opposed to the words selected. We assume that a job title is always a single, connected span.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Job Titles",
"sec_num": "3.1."
},
{
"text": "An important assumption in treating the problem of labelling vacancies with job titles as a NER problem is that inside each vacancy title, a correct job title is present as a subspan. In practice, a vacancy title might not contain a job title (or could contain multiple), but this assumption holds for an overwhelming majority of online job postings, with exceptions typically being poorly composed titles. For example, many of these nonconforming titles are made up of a single, often nonsensical word, most likely provided as a way to fill in a required field, rather than with the intent of informing job seekers. Looking beyond these exceptions, we find a simple, yet interesting hierarchy among job and vacancy titles, as shown in Figure 1 . In this structure, the parent-child relationship is that of lexical inclusion: a parent is always a substring of each of its children. 2 As we move deeper into the tree from the root node, the titles encountered grow increasingly specific, as the addition of more information to a title narrows its scope. Following such a path, there are three types of nodes encountered, following a set order:",
"cite_spans": [],
"ref_spans": [
{
"start": 736,
"end": 744,
"text": "Figure 1",
"ref_id": "FIGREF1"
}
],
"eq_spans": [],
"section": "Title Trees",
"sec_num": "3.2."
},
{
"text": "1. Pre-title nodes: these nodes are parts of job or vacancy titles, but are not valid titles themselves. For example, \"Manager\" or \"Junior\" are part of this category.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Title Trees",
"sec_num": "3.2."
},
{
"text": "2. Job title nodes: these nodes are both valid job and vacancy titles. Some cases, such as \"Neurologist\", have no parents other than the root node, while others, such as \"HR Manager\", do.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Title Trees",
"sec_num": "3.2."
},
{
"text": "3. Vacancy title nodes: these nodes are valid vacancy titles, but not valid job titles. They are almost 3 always inside a subtree that has a job title node at its root.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Title Trees",
"sec_num": "3.2."
},
{
"text": "Given a set of unlabelled vacancy titles, we can construct this tree structure easily by checking which titles contain which other titles. The problem of finding a job title within a given vacancy title is then reduced to finding the right ancestor for this vacancy title (or possibly the title itself). The tree can be implemented efficiently as a trie. In this structure, each node is represented by an ordered sequence of words, with the root being the empty sequence. To insert a new title starting at a given node, its sequence is compared to that of each child. If a child sequence is contained in the current title, the process is continued starting from this child. When no such child can be found, the title is added as a new child to this node. The construction of this trie has a complexity of M log(N ), where M is the maximal number of words per title and N is the number of unique titles inside the data structure. By inserting the titles in the order of their number of tokens, each title can be inserted as a leaf node, reducing the implementation complexity substantially.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Title Trees",
"sec_num": "3.2."
},
{
"text": "With this title tree, we have now created a setup very similar to the one used by Frantzi et al. (1998) for their C-Value/NC-Value method. However, while the latter uses a collection of n-grams generated from a longer text, this situation involves a large number of much shorter documents. This exposes an essential incompatibility of the C-value method with vacancy titles: while the C-Value is very suitable to distinguish between pre-title and job/vacancy title nodes, the difference between the latter two is much harder to assess, as both job titles and long vacancy titles get very high C-Values. Using a minimum count and maximum length can provide some relief but does not remove the problem entirely. Using the same principles as Frantzi et al. (1998), we therefore introduce the Title Occurrence Ratio (TOR), which reflects the ratio between how often a title occurs as a standalone vacancy title, and how often it occurs in general (including appearances as a substring of a vacancy title). Unlike the C-Value method, our approach does not treat stop words or certain part-of-speech tags differently, as this was found to make no difference for our use case. The GetRatio function in the algorithm below shows how to calculate the ratio for a given title, leveraging the trie data structure described in the previous subsection. Note that for efficiency, the different calls to BuildTrie can be replaced by a single, pre-built trie structure.",
"cite_spans": [
{
"start": 82,
"end": 103,
"text": "Frantzi et al. (1998)",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Title Occurrence Ratio (TOR)",
"sec_num": "3.3."
},
{
"text": "Input: T 1 . . . T N (normalised vacancy titles) Input: Counts (a dictionary with the count for each title) Input: V acT itle (the vacancy title at hand) Output: JobT itle (the predicted job title subspan)",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Title Occurrence Ratio (TOR)",
"sec_num": "3.3."
},
{
"text": "1: function GETPARENTS(T itle, T [ ]) 2:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Title Occurrence Ratio (TOR)",
"sec_num": "3.3."
},
{
"text": "T rie \u2190 BuildT rie(T [ ]) // Build a trie with all titles.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Title Occurrence Ratio (TOR)",
"sec_num": "3.3."
},
{
"text": "Anc \u2190 T rie.extract(T itle) // Find all ancestors.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "3:",
"sec_num": null
},
{
"text": "P N \u2190 {} // Initialise parent nodes as empty.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "4:",
"sec_num": null
},
{
"text": "for X in sort(Anc, key=\u03bbX \u2212 \u2192 \u2212X.length) do 12:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "5:",
"sec_num": null
},
{
"text": "C 0 \u2190 Counts[T itle]",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "5:",
"sec_num": null
},
{
"text": "13:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "5:",
"sec_num": null
},
{
"text": "C 1 \u2190 0 14:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "5:",
"sec_num": null
},
{
"text": "for X in GetP arents(T itle, T [ ]) do 15: ",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "5:",
"sec_num": null
},
{
"text": "C 1 \u2190 C 1 + Counts[X]",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "5:",
"sec_num": null
},
{
"text": "Cand.f ilter(\u03bbX \u2212 \u2192 R min < GetRatio(X) < R max ) 23: return max(Cand, \u03bbX \u2212 \u2192 GetRatio(X))",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "5:",
"sec_num": null
},
{
"text": "We now propose our novel job title extraction method based on this ratio. As figure 3 shows, the general distribution of vacancy title ratios (in green) differs greatly from that of job titles (in blue). While it is not possible to separate the two based on this number alone, vacancy titles tend to have a ratio close to one, while job titles have a much softer distribution centred around 0.45. It should be noted that the vacancy title distribution contains a component that looks much like the job title distribution -this is potentially linked to job titles not included in the ESCO dataset. Similarly, there are job titles with a very high TOR, which are most likely to be rare job titles that do not occur more than a handful of times within our dataset.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The TOR Method",
"sec_num": "3.4."
},
{
"text": "As described in Section 3.2., a path from root to leaf can be seen as having up to three phases, with the job title phase (which we want to select) lodged in the middle. As the title ratio typically increases steadily from root to leaf, we aim to build a very simple selection system by placing an upper and lower bound on the ratio. Both of these boundaries are optimised using a labelled training dataset, after the construction of the title tree using the combined training and test set. With these selection boundaries in place, the job title for a given vacancy title is now predicted to be its closest ancestor that does not violate the upper and lower bound. Our method is applied as a standalone technique, as well as to preprocess titles before feeding them to the CNN and BERT models.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "The TOR Method",
"sec_num": "3.4."
},
{
"text": "The goal of our system is to find new or unknown job titles within a stream of vacancy titles. We measure the success of each approach by evaluating how well it manages to extract job titles from their respective vacancy titles. We make use of two separate types of metrics:",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation",
"sec_num": "4."
},
{
"text": "\u2022 Title level metrics: the main metric is the title level accuracy, which measures how often a fully correct title for a vacancy was extracted. This is the most direct representative for the actual value of a system in practice, as high accuracy is required to be able to contribute to an ontology.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation",
"sec_num": "4."
},
{
"text": "\u2022 Token level metrics: while the title level accuracy allows for the best performance ranking, insights on the token-level predictions for each method can prove valuable as well. By measuring how well each system predicts whether a token in the vacancy title is part of the corresponding job title, we can gain a better understanding of its behaviour. For example, a system might have low title level accuracy due to a bias towards longer titles, which can be easily read from the token level precision and recall.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation",
"sec_num": "4."
},
{
"text": "For each metric, we calculate both the micro and macro average (grouped by the job title label), as to be able to compare performance for frequent and rare job titles. Our main metric, title level prediction accuracy, corresponds directly to a large part of the value of our system in a practical context, as it is only possible to gain useful information about new and unknown titles if they are extracted from vacancies correctly. As to mimic this scenario for our evaluation setup, we separate ESCO into a training set (the set of known titles) and a test set (the set of new/unknown titles). We make sure to avoid these sets influencing each other directly, by ensuring there are no lexical inclusion relations between members of different sets. Using a sample of 1 million scraped vacancy titles 4 , we now select the vacancies containing each of these titles, using the contained job title as the gold standard. 5 We find that in 57.4% of all vacancies, an ESCO title is included in the title -vacancies where no match could be found are kept separately in the background set. While this background set is not a part of the training or test set, we include it for the training phase of the TOR method, as to make sure that the evaluation task does not have a bias towards methods based on lexical inclusion properties. In our final dataset, the training set contains 124 108 unique vacancy titles, while the test set contains 45 647 vacancy titles.",
"cite_spans": [
{
"start": 918,
"end": 919,
"text": "5",
"ref_id": null
}
],
"ref_spans": [],
"eq_spans": [],
"section": "Evaluation",
"sec_num": "4."
},
{
"text": "We evaluate two separate versions of the TOR method: TOR 1M , which is trained on the original set of 1 million vacancy titles (including the training, test and background set) and TOR 100M , which is trained on a much larger set of 100 million vacancy titles. Optimising on the training set, we find optimal ratio boundaries of 0.03 and 0.69. TOR 100M is only applied as a standalone model, to reflect performance changes when more data is added. For the NER methods, only the longest continuous span of tokens marked as a job title by the model is used as a prediction, as a fragmented prediction would always be counted as an error due to the construction of our dataset. We also include two baselines: the identity baseline, which predicts the entire vacancy title to be part of the job title, and the C-Value method by Frantzi et al. (1998) , using an optimal minimum count of 5 and C-Value threshold of 0. Table 1 : Evaluation results on the constructed task -the best result in each column is marked in bold. (*) Recall of the identity baseline is 1 by construction.",
"cite_spans": [
{
"start": 824,
"end": 845,
"text": "Frantzi et al. (1998)",
"ref_id": null
}
],
"ref_spans": [
{
"start": 912,
"end": 919,
"text": "Table 1",
"ref_id": null
}
],
"eq_spans": [],
"section": "Evaluation",
"sec_num": "4."
},
{
"text": "The results for the job title extraction task are shown in Table 1. Consistent with earlier work (Devlin et al., 2019), the BERT model substantially outperforms the CNN both in terms of micro and macro average. While the C-Value method outperforms the identity baseline, it generally lags behind other methods across the board. Our novel TOR method is competitive with the neural methods, with both TOR 1M and TOR 100M outperforming the CNN in terms of micro-average. TOR 1M exhibits a clear performance decrease for rare titles, as shown by its low macro averaged scores. However, feeding the same algorithm with 100 million vacancy titles instead, scores show a substantial boost. The TOR method is over 100 times faster than both BERT and the convolutional model, as well as having a smaller memory footprint. This makes our method especially interesting for applications with strict timing requirements or massive amounts of data. For applications where timing is of lesser importance, the TOR method can still be beneficial: the hybrid models, combining TOR with a more typical NER model, show consistent performance improvements across the board. This is especially clear in the improved title-level accuracy, showing that the inherent hierarchical structure of job and vacancy titles can be leveraged to improve general-purpose models. Our method is extremely efficient, compatible with any NER method and easy to implement, making for an easy way to improve job matching systems. By construction, the evaluation setup reflects the discovery of previously fully unknown job titles, showing that these methods are of particular interest for the (semi-)automated expansion of job market ontologies, leveraging data-driven insights to keep standards up to date in a job market that is changing faster than ever. During the review phase for this paper, we applied our method at the behest of VDAB, the Flemish employment agency. In this project, our technique was used to suggest new titles for its Competent standard. As Competent is written in Dutch, we used the RobBERT model introduced by Delobelle et al. (2020). We found results to be comparable to those obtained in English on the ESCO ontology, with the main difference being a higher macro averaged score, likely to be the consequence of the different methodology used to construct Competent. These results show that our method generalises across multiple languages and occupational taxonomies.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Results",
"sec_num": "5."
},
{
"text": "While the current trend of ever-bigger NLP models does result in the promised performance gains, we have shown that a simple technique incorporating domain knowledge can provide a further boost to the task of extracting job titles from vacancy titles. Our method is conceptually simple, over two orders of magnitude faster than competing models and can be applied in tandem with more general NER models. While our technique struggles with rare job titles when trained on a small dataset, this issue disappears when more data is added, with the TOR method achieving performance comparable to a CNN. Aside from using our method as a standalone model, it can also be leveraged as a preprocessing step, consistently resulting in improved accuracy. Future work will explore the application of our method in different fields, as well as more advanced ways to leverage the title tree used in this paper.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Conclusion",
"sec_num": "6."
},
{
"text": "Throughout this paper, 'job title' is used for the name of a function, while a 'vacancy title' is the title of a vacancy page -for example, 'digital marketeer' is a job title, while 'digital marketeer at Google, London' is a vacancy title.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "For simplicity, the figure shows a single parent for each titlein practice, multiple copies of the same title can exist for different parents.3 Looking at large numbers of online vacancies, we observe that job titles that are frequent enough always occur as standalone vacancy titles.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
},
{
"text": "From company websites and job boards in the UK. 5 While this annotation can cause errors in some cases, it resolves the problem of collecting sufficient annotated data.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "",
"sec_num": null
}
],
"back_matter": [
{
"text": "We thank the anonymous reviewers for their valuable feedback. This publication uses the ESCO classification of the European Commission. The application of the techniques described in this paper to the Competent standard is part of a project funded by VDAB.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Acknowledgements",
"sec_num": null
},
{
"text": "De Smedt, J., le Vrang, M., and Papantoniou, A. (2015).Esco: Towards a semantic web for the european labor market. In LDOW@ WWW. Delobelle, P., Winters, T., and Berendt, B. (2020). Robbert: a dutch roberta-based language model. arXiv preprint arXiv:2001.06286. Devlin, J., Chang, M.-W., Lee, K., and Toutanova, K.(2019). Bert: Pre-training of deep bidirectional transformers for language understanding. In Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long and Short Papers), pages 4171-4186. Frantzi, K. T., Ananiadou, S., and Tsujii, J.-i. (1998). The C-value/NC-value method of automatic recognition for multi-word terms. In Proceedings of the Second European Conference on Research and Advanced Technology for Digital Libraries, ECDL '98, pages 585-604, London, UK, UK. Springer-Verlag.",
"cite_spans": [],
"ref_spans": [],
"eq_spans": [],
"section": "Bibliographical References",
"sec_num": null
}
],
"bib_entries": {
"BIBREF0": {
"ref_id": "b0",
"title": "Lexically-based terminology structuring: Some inherent limits",
"authors": [
{
"first": "N",
"middle": [],
"last": "Grabar",
"suffix": ""
},
{
"first": "P",
"middle": [],
"last": "Zweigenbaum",
"suffix": ""
}
],
"year": 2002,
"venue": "Second International Workshop on Computational Terminology (COMPUTERM 2002)",
"volume": "",
"issue": "",
"pages": "36--42",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Grabar, N. and Zweigenbaum, P. (2002). Lexically-based terminology structuring: Some inherent limits. In Lee- Feng Chien, et al., editors, Second International Work- shop on Computational Terminology (COMPUTERM 2002), pages 36-42, Taipei, Taiwan. ACLCLP.",
"links": null
},
"BIBREF1": {
"ref_id": "b1",
"title": "spacy 2: Natural language understanding with bloom embeddings, convolutional neural networks and incremental parsing",
"authors": [
{
"first": "M",
"middle": [],
"last": "Honnibal",
"suffix": ""
},
{
"first": "I",
"middle": [],
"last": "Montani",
"suffix": ""
}
],
"year": 2017,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Honnibal, M. and Montani, I. (2017). spacy 2: Natural language understanding with bloom embeddings, convo- lutional neural networks and incremental parsing.",
"links": null
},
"BIBREF2": {
"ref_id": "b2",
"title": "Towards a job title classification system",
"authors": [
{
"first": "F",
"middle": [],
"last": "Javed",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Mcnair",
"suffix": ""
},
{
"first": "F",
"middle": [],
"last": "Jacob",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Zhao",
"suffix": ""
}
],
"year": 2016,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {
"arXiv": [
"arXiv:1606.00917"
]
},
"num": null,
"urls": [],
"raw_text": "Javed, F., McNair, M., Jacob, F., and Zhao, M. (2016). Towards a job title classification system. arXiv preprint arXiv:1606.00917.",
"links": null
},
"BIBREF3": {
"ref_id": "b3",
"title": "Esco: Boosting job matching in europe with semantic interoperability",
"authors": [
{
"first": "M",
"middle": [],
"last": "Le Vrang",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Papantoniou",
"suffix": ""
},
{
"first": "E",
"middle": [],
"last": "Pauwels",
"suffix": ""
},
{
"first": "P",
"middle": [],
"last": "Fannes",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Vandensteen",
"suffix": ""
},
{
"first": "De",
"middle": [],
"last": "Smedt",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "",
"suffix": ""
}
],
"year": 2014,
"venue": "",
"volume": "47",
"issue": "",
"pages": "57--64",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "le Vrang, M., Papantoniou, A., Pauwels, E., Fannes, P., Vandensteen, D., and De Smedt, J. (2014). Esco: Boost- ing job matching in europe with semantic interoperabil- ity. volume 47, pages 57-64. IEEE.",
"links": null
},
"BIBREF4": {
"ref_id": "b4",
"title": "Learning text similarity with siamese recurrent networks",
"authors": [
{
"first": "P",
"middle": [],
"last": "Neculoiu",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Versteegh",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Rotaru",
"suffix": ""
}
],
"year": 2016,
"venue": "Proceedings of the 1st Workshop on Representation Learning for NLP",
"volume": "",
"issue": "",
"pages": "148--157",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Neculoiu, P., Versteegh, M., and Rotaru, M. (2016). Learning text similarity with siamese recurrent networks. In Proceedings of the 1st Workshop on Representation Learning for NLP, pages 148-157.",
"links": null
},
"BIBREF5": {
"ref_id": "b5",
"title": "A concept-driven algorithm for clustering search results",
"authors": [
{
"first": "S",
"middle": [],
"last": "Osinski",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Weiss",
"suffix": ""
}
],
"year": 2005,
"venue": "IEEE Intelligent Systems",
"volume": "20",
"issue": "3",
"pages": "48--54",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Osinski, S. and Weiss, D. (2005). A concept-driven algo- rithm for clustering search results. IEEE Intelligent Sys- tems, 20(3):48-54.",
"links": null
},
"BIBREF6": {
"ref_id": "b6",
"title": "Ontology population and enrichment: State of the art",
"authors": [
{
"first": "G",
"middle": [],
"last": "Petasis",
"suffix": ""
},
{
"first": "V",
"middle": [],
"last": "Karkaletsis",
"suffix": ""
},
{
"first": "G",
"middle": [],
"last": "Paliouras",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Krithara",
"suffix": ""
},
{
"first": "E",
"middle": [],
"last": "Zavitsanos",
"suffix": ""
}
],
"year": 2011,
"venue": "Knowledge-driven multimedia information extraction and ontology evolution",
"volume": "",
"issue": "",
"pages": "134--166",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Petasis, G., Karkaletsis, V., Paliouras, G., Krithara, A., and Zavitsanos, E. (2011). Ontology population and enrich- ment: State of the art. In Knowledge-driven multime- dia information extraction and ontology evolution, pages 134-166. Springer.",
"links": null
},
"BIBREF7": {
"ref_id": "b7",
"title": "Understanding work using the occupational information network (o* net): Implications for practice and research",
"authors": [
{
"first": "N",
"middle": [
"G"
],
"last": "Peterson",
"suffix": ""
},
{
"first": "M",
"middle": [
"D"
],
"last": "Mumford",
"suffix": ""
},
{
"first": "W",
"middle": [
"C"
],
"last": "Borman",
"suffix": ""
},
{
"first": "P",
"middle": [
"R"
],
"last": "Jeanneret",
"suffix": ""
},
{
"first": "E",
"middle": [
"A"
],
"last": "Fleishman",
"suffix": ""
},
{
"first": "K",
"middle": [
"Y"
],
"last": "Levin",
"suffix": ""
},
{
"first": "M",
"middle": [
"A"
],
"last": "Campion",
"suffix": ""
},
{
"first": "M",
"middle": [
"S"
],
"last": "Mayfield",
"suffix": ""
},
{
"first": "F",
"middle": [
"P"
],
"last": "Morgeson",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Pearlman",
"suffix": ""
}
],
"year": 2001,
"venue": "Personnel Psychology",
"volume": "54",
"issue": "2",
"pages": "451--492",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Peterson, N. G., Mumford, M. D., Borman, W. C., Jean- neret, P. R., Fleishman, E. A., Levin, K. Y., Campion, M. A., Mayfield, M. S., Morgeson, F. P., Pearlman, K., et al. (2001). Understanding work using the occupa- tional information network (o* net): Implications for practice and research. Personnel Psychology, 54(2):451- 492.",
"links": null
},
"BIBREF8": {
"ref_id": "b8",
"title": "Fast and accurate entity recognition with iterated dilated convolutions",
"authors": [
{
"first": "E",
"middle": [],
"last": "Strubell",
"suffix": ""
},
{
"first": "P",
"middle": [],
"last": "Verga",
"suffix": ""
},
{
"first": "D",
"middle": [],
"last": "Belanger",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Mccallum",
"suffix": ""
}
],
"year": 2017,
"venue": "Proceedings of the 2017 Conference on Empirical Methods in Natural Language Processing",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Strubell, E., Verga, P., Belanger, D., and McCallum, A. (2017). Fast and accurate entity recognition with iter- ated dilated convolutions. Proceedings of the 2017 Con- ference on Empirical Methods in Natural Language Pro- cessing.",
"links": null
},
"BIBREF9": {
"ref_id": "b9",
"title": "Deepcarotene-job title classification with multistream convolutional neural network",
"authors": [
{
"first": "J",
"middle": [],
"last": "Wang",
"suffix": ""
},
{
"first": "K",
"middle": [],
"last": "Abdelfatah",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Korayem",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Balaji",
"suffix": ""
}
],
"year": 2019,
"venue": "2019 IEEE International Conference on Big Data (Big Data)",
"volume": "",
"issue": "",
"pages": "1953--1961",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Wang, J., Abdelfatah, K., Korayem, M., and Balaji, J. (2019). Deepcarotene-job title classification with multi- stream convolutional neural network. In 2019 IEEE In- ternational Conference on Big Data (Big Data), pages 1953-1961. IEEE.",
"links": null
},
"BIBREF10": {
"ref_id": "b10",
"title": "Transformers: State-of-the-art natural language processing",
"authors": [
{
"first": "T",
"middle": [],
"last": "Wolf",
"suffix": ""
},
{
"first": "L",
"middle": [],
"last": "Debut",
"suffix": ""
},
{
"first": "V",
"middle": [],
"last": "Sanh",
"suffix": ""
},
{
"first": "J",
"middle": [],
"last": "Chaumond",
"suffix": ""
},
{
"first": "C",
"middle": [],
"last": "Delangue",
"suffix": ""
},
{
"first": "A",
"middle": [],
"last": "Moi",
"suffix": ""
},
{
"first": "P",
"middle": [],
"last": "Cistac",
"suffix": ""
},
{
"first": "T",
"middle": [],
"last": "Rault",
"suffix": ""
},
{
"first": "R",
"middle": [],
"last": "Louf",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Funtowicz",
"suffix": ""
}
],
"year": 2019,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {
"arXiv": [
"arXiv:1910.03771"
]
},
"num": null,
"urls": [],
"raw_text": "Wolf, T., Debut, L., Sanh, V., Chaumond, J., Delangue, C., Moi, A., Cistac, P., Rault, T., Louf, R., Funtowicz, M., et al. (2019). Transformers: State-of-the-art natural lan- guage processing. arXiv preprint arXiv:1910.03771.",
"links": null
},
"BIBREF11": {
"ref_id": "b11",
"title": "Skill: A system for skill identification and normalization",
"authors": [
{
"first": "M",
"middle": [],
"last": "Zhao",
"suffix": ""
},
{
"first": "F",
"middle": [],
"last": "Javed",
"suffix": ""
},
{
"first": "F",
"middle": [],
"last": "Jacob",
"suffix": ""
},
{
"first": "M",
"middle": [],
"last": "Mcnair",
"suffix": ""
}
],
"year": 2015,
"venue": "Twenty-Seventh IAAI Conference",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Zhao, M., Javed, F., Jacob, F., and McNair, M. (2015). Skill: A system for skill identification and normalization. In Twenty-Seventh IAAI Conference.",
"links": null
},
"BIBREF12": {
"ref_id": "b12",
"title": "European Skills, Competences, Qualifications and Occupations",
"authors": [],
"year": 2017,
"venue": "",
"volume": "",
"issue": "",
"pages": "",
"other_ids": {},
"num": null,
"urls": [],
"raw_text": "Language Resource References ESCO. (2017). European Skills, Competences, Qualifica- tions and Occupations.",
"links": null
}
},
"ref_entries": {
"FIGREF1": {
"uris": null,
"text": "Job titles (green) and vacancy titles (red) tend to follow an intuitive hierarchy based on lexical inclusion.",
"type_str": "figure",
"num": null
},
"FIGREF2": {
"uris": null,
"text": "An example of an occupation profile from ESCO.",
"type_str": "figure",
"num": null
},
"FIGREF3": {
"uris": null,
"text": "GETRATIO(T itle, T [ ])",
"type_str": "figure",
"num": null
},
"FIGREF4": {
"uris": null,
"text": "function GETJOBTITLE(V acT itle, T [ ]) 20: T rie \u2190 BuildT rie(T [ ]) 21: Cand \u2190 T rie.extract(V acT itle) + {V acT itle} 22:",
"type_str": "figure",
"num": null
},
"FIGREF5": {
"uris": null,
"text": "The probability distribution of both job and vacancy titles over their Title Occurrence Ratio.",
"type_str": "figure",
"num": null
},
"TABREF0": {
"text": "Title Acc. Precision Recall F1 Title Acc.",
"html": null,
"content": "<table><tr><td/><td/><td>Micro Average</td><td/><td/><td>Macro Average</td><td/></tr><tr><td colspan=\"3\">Method Precision Recall F1 Identity Baseline 0.33 1.00* 0.20</td><td>0.02</td><td>0.53</td><td>1.00* 0.70</td><td>0.25</td></tr><tr><td>CValue</td><td>0.78</td><td>0.90 0.83</td><td>0.59</td><td>0.77</td><td>0.56 0.65</td><td>0.30</td></tr><tr><td>CNN</td><td>0.89</td><td>0.82 0.85</td><td>0.67</td><td>0.89</td><td>0.79 0.84</td><td>0.61</td></tr><tr><td>BERT</td><td>0.93</td><td>0.94 0.93</td><td>0.81</td><td>0.94</td><td>0.89 0.92</td><td>0.71</td></tr><tr><td>TOR1M</td><td>0.88</td><td>0.91 0.90</td><td>0.72</td><td>0.81</td><td>0.50 0.62</td><td>0.18</td></tr><tr><td>TOR100M</td><td>0.85</td><td>0.93 0.89</td><td>0.68</td><td>0.86</td><td>0.79 0.82</td><td>0.59</td></tr><tr><td>TOR1M + CNN</td><td>0.85</td><td>0.93 0.89</td><td>0.73</td><td>0.88</td><td>0.84 0.86</td><td>0.64</td></tr><tr><td>TOR1M + BERT</td><td>0.94</td><td>0.95 0.94</td><td>0.84</td><td>0.95</td><td>0.90 0.93</td><td>0.74</td></tr></table>",
"num": null,
"type_str": "table"
}
}
}
} |