{"about":{"site":"https://codewithpapers.app","non_affiliation":"Code with Papers and Syntology are not affiliated with, endorsed by, or sponsored by Papers with Code, Meta, or the pwc-archive mirror.","licence":"CC BY-SA 4.0","licence_url":"https://creativecommons.org/licenses/by-sa/4.0/legalcode","attribution":"https://codewithpapers.app/attribution","modified":"archive material modified by Syntology; see the attribution page"},"url":"/paper/amr-parsing-via-graph-sequence-iterative","title":"AMR Parsing via Graph-Sequence Iterative Inference","arxiv_id":"2004.05572","date":"2020-04-12","proceeding":"ACL 2020 6","authors":["Deng Cai","Wai Lam"],"abstract":"We propose a new end-to-end model that treats AMR parsing as a series of dual decisions on the input sequence and the incrementally constructed graph. At each time step, our model performs multiple rounds of attention, reasoning, and composition that aim to answer two critical questions: (1) which part of the input \\textit{sequence} to abstract; and (2) where in the output \\textit{graph} to construct the new concept. We show that the answers to these two questions are mutually causalities. We design a model based on iterative inference that helps achieve better answers in both perspectives, leading to greatly improved parsing accuracy. Our experimental results significantly outperform all previously reported \\textsc{Smatch} scores by large margins. Remarkably, without the help of any large-scale pre-trained language model (e.g., BERT), our model already surpasses previous state-of-the-art using BERT. With the help of BERT, we can push the state-of-the-art results to 80.2\\% on LDC2017T10 (AMR 2.0) and 75.4\\% on LDC2014T12 (AMR 1.0).","url_abs":"https://arxiv.org/abs/2004.05572v2","url_pdf":"https://arxiv.org/pdf/2004.05572v2.pdf","source":{"archive":"pwc-archive (Hugging Face), CC BY-SA 4.0","snapshot":"2025-07-28","licence_url":"https://creativecommons.org/licenses/by-sa/4.0/legalcode","row_kind":"abstracts"},"code_links":[{"paper_slug":"amr-parsing-via-graph-sequence-iterative","repo_url":"https://github.com/jcyk/AMR-gs","is_official":1,"mentioned_in_paper":1,"mentioned_in_github":1,"framework":"pytorch","reach":{"status":"ok","spdx":"MIT"}},{"paper_slug":"amr-parsing-via-graph-sequence-iterative","repo_url":"https://github.com/bjascob/amrlib","is_official":0,"mentioned_in_paper":0,"mentioned_in_github":1,"framework":"none","reach":null},{"paper_slug":"amr-parsing-via-graph-sequence-iterative","repo_url":"https://github.com/ibm/graph_ensemble_learning","is_official":0,"mentioned_in_paper":0,"mentioned_in_github":1,"framework":"pytorch","reach":null}],"tasks":[{"task_slug":"amr-parsing","task_name":"AMR Parsing"},{"task_slug":"language-modeling","task_name":"Language Modeling"},{"task_slug":"language-modelling","task_name":"Language Modelling"}],"methods":[{"method_slug":"adam","method_name":"Adam"},{"method_slug":"attention","method_name":"Attention"},{"method_slug":"attention-dropout","method_name":"Attention Dropout"},{"method_slug":"bert","method_name":"BERT"},{"method_slug":"dense-connections","method_name":"Dense Connections"},{"method_slug":"dropout","method_name":"Dropout"},{"method_slug":"layer-normalization","method_name":"Layer Normalization"},{"method_slug":"linear-layer","method_name":"Linear Layer"},{"method_slug":"linear-warmup-with-linear-decay","method_name":"Linear Warmup With Linear Decay"},{"method_slug":"multi-head-attention","method_name":"Multi-Head Attention"},{"method_slug":"residual-connection","method_name":"Residual Connection"},{"method_slug":"softmax","method_name":"Softmax"},{"method_slug":"weight-decay","method_name":"Weight Decay"},{"method_slug":"wordpiece","method_name":"WordPiece"}],"datasets_introduced":[],"methods_introduced":[],"results":[{"leaderboard":"/sota/amr-parsing-on-ldc2014t12-1","task":"AMR Parsing","dataset":"LDC2014T12","model":"AMR Parsing via Graph-Sequence Iterative Inference","rank_in_archive_order":3,"of":12,"metrics":{"F1 Full":"75.4"},"uses_additional_data":false},{"leaderboard":"/sota/amr-parsing-on-ldc2017t10","task":"AMR Parsing","dataset":"LDC2017T10","model":"Cai and Lam","rank_in_archive_order":17,"of":27,"metrics":{"Smatch":"80.2"},"uses_additional_data":false}],"syntology":{"atlas_url":"https://app.syntology.ai/?focus=2004.05572","mcp":{"get_harvested_code_for_paper":{"arxiv_id":"2004.05572"}},"developers":"https://syntology.ai/developers","read_at":"2026-09-24T18:15:14+00:00","read_at_is":"when the build read Syntology's graph, not when any sample ran","claim":"Per-sample execution status on synthesized fixtures; not a correctness claim about the paper. Samples come from repositories linked to the paper, official or community; repo_kind says which.","repos":[{"provenance":"external:paperswithcode_snapshot_2025-07-28","url":"https://github.com/jcyk/AMR-gs","reach":{"status":"ok","spdx":"MIT"}},{"provenance":"external:paperswithcode_snapshot_2025-07-28","url":"https://github.com/ibm/graph_ensemble_learning","reach":null},{"provenance":"external:paperswithcode_snapshot_2025-07-28","url":"https://github.com/bjascob/amrlib","reach":null}],"summary":{"ran_draft_wrong":5,"ran":10,"ran_honours":1,"ran_violates":1,"unverified":14},"by_repo_kind":{"official":{"samples":6,"ran":0,"repositories":1},"listed":{"samples":24,"ran":16,"repositories":1}},"repo_kind_vocabulary":{"official":"The archive marks this repository official for the paper","named_in_paper":"The archive records that the paper mentions this repository; it is not marked official","listed":"In the archive's code links for this paper, not marked official and not recorded as mentioned in the paper","found_in_text":"Syntology found this repository in the paper's own text; whether it is the authors' implementation is not asserted","community":"Not in the archive's code links for this paper; a community repository Syntology harvested"},"n_pointer_only_for_licence":1,"samples":[{"code_sha256_prefix":"9c17ed9b8e45ed75","entry":"AMREmbedding","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"ran_draft_wrong","verification_level":1,"contract_check":"OUTPUT_MISDECLARED","metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"9c17ed9b8e45ed75"}},{"code_sha256_prefix":"9422195a9817c9f0","entry":"Beam","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"9422195a9817c9f0"}},{"code_sha256_prefix":"2aca3b9ec1e90acc","entry":"CNNEncoder","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"2aca3b9ec1e90acc"}},{"code_sha256_prefix":"9685d1d7338d51b0","entry":"ConceptEncoder","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"9685d1d7338d51b0"}},{"code_sha256_prefix":"1485dd769dd9cb51","entry":"Embedding","repo":null,"repo_kind":null,"path":null,"file_url":null,"link_basis":"identical_code_first_harvested_elsewhere","language":"python","status":"ran_draft_wrong","verification_level":1,"contract_check":"OUTPUT_MISDECLARED","metamorphic_tier":"deterministic","behaviour_fingerprint":false,"licence":null,"inline_ok":false,"mcp_get_code":{"code_sha256":"1485dd769dd9cb51"}},{"code_sha256_prefix":"9a03fd1280e48fe1","entry":"Highway","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"9a03fd1280e48fe1"}},{"code_sha256_prefix":"578aaecb450604aa","entry":"Hypothesis","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"578aaecb450604aa"}},{"code_sha256_prefix":"61216bb6394461a5","entry":"ListsToTensor","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"ran_honours","verification_level":1,"contract_check":"HONOURS","metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"61216bb6394461a5"}},{"code_sha256_prefix":"d575ce59062e5687","entry":"RelationGenerator","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"d575ce59062e5687"}},{"code_sha256_prefix":"2eacf55a75ce3b77","entry":"SelfAttentionMask","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"2eacf55a75ce3b77"}},{"code_sha256_prefix":"940651e6bf8dc1b0","entry":"SinusoidalPositionalEmbedding","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"940651e6bf8dc1b0"}},{"code_sha256_prefix":"8e5d31580fcebd5a","entry":"TransformerLayer","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"8e5d31580fcebd5a"}},{"code_sha256_prefix":"490e608e2f392b83","entry":"WordEncoder","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"ran","verification_level":1,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"490e608e2f392b83"}},{"code_sha256_prefix":"5fe4e042a974cf92","entry":"_is_attr_form","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"ran_violates","verification_level":1,"contract_check":"VIOLATES","metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"5fe4e042a974cf92"}},{"code_sha256_prefix":"4166e883cf4ae5a9","entry":"compute_f_by_tensor","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"ran_draft_wrong","verification_level":1,"contract_check":"MISDECLARED","metamorphic_tier":null,"behaviour_fingerprint":true,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"4166e883cf4ae5a9"}},{"code_sha256_prefix":"2746494f3bbf25b3","entry":"label_smoothed_nll_loss","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"ran_draft_wrong","verification_level":1,"contract_check":"MISDECLARED","metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"2746494f3bbf25b3"}},{"code_sha256_prefix":"9d1d752263773f70","entry":"move_to_device","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"ran_draft_wrong","verification_level":1,"contract_check":"MISDECLARED","metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"9d1d752263773f70"}},{"code_sha256_prefix":"ff00df88d53cbc0d","entry":"ArcGenerator","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"ff00df88d53cbc0d"}},{"code_sha256_prefix":"664642471ed447d0","entry":"ArraysToTensor","repo":"jcyk/AMR-gs","repo_kind":"official","path":"parser/data.py","file_url":"https://github.com/jcyk/AMR-gs/blob/HEAD/parser/data.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"664642471ed447d0"}},{"code_sha256_prefix":"08e5532ebc24827d","entry":"ConceptGenerator","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"08e5532ebc24827d"}},{"code_sha256_prefix":"408d38484408687b","entry":"DecodeLayer","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"408d38484408687b"}},{"code_sha256_prefix":"12eb240a8ae9ed12","entry":"ListsToTensor","repo":"jcyk/AMR-gs","repo_kind":"official","path":"parser/data.py","file_url":"https://github.com/jcyk/AMR-gs/blob/HEAD/parser/data.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"12eb240a8ae9ed12"}},{"code_sha256_prefix":"ab457d4ca63f1a01","entry":"ListsofStringToTensor","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"ab457d4ca63f1a01"}},{"code_sha256_prefix":"b34a3f249614ba45","entry":"ListsofStringToTensor","repo":"jcyk/AMR-gs","repo_kind":"official","path":"parser/data.py","file_url":"https://github.com/jcyk/AMR-gs/blob/HEAD/parser/data.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"b34a3f249614ba45"}},{"code_sha256_prefix":"4b0bd99292baeaff","entry":"MultiheadAttention","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"4b0bd99292baeaff"}},{"code_sha256_prefix":"e56d2ab78d40acb7","entry":"Parser","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"e56d2ab78d40acb7"}},{"code_sha256_prefix":"f0af88a62479f8da","entry":"Transformer","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"f0af88a62479f8da"}},{"code_sha256_prefix":"5846e0e199be3a49","entry":"is_attr_or_abs_form","repo":"jcyk/AMR-gs","repo_kind":"official","path":"parser/AMRGraph.py","file_url":"https://github.com/jcyk/AMR-gs/blob/HEAD/parser/AMRGraph.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"5846e0e199be3a49"}},{"code_sha256_prefix":"5d147ec91127fd39","entry":"make_vocab","repo":"jcyk/AMR-gs","repo_kind":"official","path":"parser/extract.py","file_url":"https://github.com/jcyk/AMR-gs/blob/HEAD/parser/extract.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"5d147ec91127fd39"}},{"code_sha256_prefix":"53445cbd60ba3b37","entry":"need_an_instance","repo":"jcyk/AMR-gs","repo_kind":"official","path":"parser/AMRGraph.py","file_url":"https://github.com/jcyk/AMR-gs/blob/HEAD/parser/AMRGraph.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"53445cbd60ba3b37"}},{"code_sha256_prefix":"009b8f7e0b6e1c7a","entry":"search_by_batch","repo":"bjascob/amrlib","repo_kind":"listed","path":"amrlib/models/parse_gsii/modules/parser.py","file_url":"https://github.com/bjascob/amrlib/blob/HEAD/amrlib/models/parse_gsii/modules/parser.py","link_basis":"first_harvest_node","language":"python","status":"unverified","verification_level":0,"contract_check":null,"metamorphic_tier":null,"behaviour_fingerprint":false,"licence":"MIT","inline_ok":true,"mcp_get_code":{"code_sha256":"009b8f7e0b6e1c7a"}}]},"arxiv_metadata":null,"syntology_extracted_results":null}