{"id":32273,"date":"2024-11-01T09:07:24","date_gmt":"2024-11-01T09:07:24","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=32273"},"modified":"2024-11-01T11:19:25","modified_gmt":"2024-11-01T11:19:25","slug":"deep-learning-for-natural-language-processing-calculating-similarity-of-disclosure-business-reports-with-doc2vec","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/32273\/","title":{"rendered":"Deep Learning for Natural Language Processing, Calculating Similarity of Disclosure Business Reports with Doc2Vec"},"content":{"rendered":"<p><body><\/p>\n<p>Natural Language Processing (NLP) is a subfield of computer science that encompasses the interaction between computers and human language, and is one of the important areas of artificial intelligence. With the advancement of deep learning technologies, NLP is greatly helping to address various problems. In particular, Doc2Vec is one of the effective methodologies for calculating the similarity between documents by mapping the meaning of documents into vector space, and it is utilized in many studies. This article will discuss how to calculate the similarity of public business reports using Doc2Vec.<\/p>\n<h2>1. Reasons for the Need for Natural Language Processing<\/h2>\n<p>The advancement of natural language processing is becoming increasingly important in various fields such as business, healthcare, and finance. Especially in processing large amounts of unstructured data like public business reports, NLP technology is essential. By evaluating the similarity between documents, companies can analyze their competitiveness and support decision-making.<\/p>\n<h3>1.1 Increase in Unstructured Data<\/h3>\n<p>Unstructured data refers to data that does not have a standardized format. Unstructured data, which exists in various forms such as public business reports, news articles, and social media posts, is very important for evaluating and analyzing company value. Analyzing this unstructured data requires advanced NLP technology.<\/p>\n<h3>1.2 Advancement of NLP<\/h3>\n<p>Traditional NLP methods primarily used statistical techniques and rule-based approaches, but in recent years, deep learning-based models have gained a lot of attention. In particular, embedding techniques such as Word2Vec and GloVe capture meaning by mapping words into high-dimensional vector spaces, and Doc2Vec extends this technology to the document level.<\/p>\n<h2>2. Understanding Doc2Vec<\/h2>\n<p>Doc2Vec is a model developed by researchers at Google that maps documents into high-dimensional vector spaces. This model is based on two main ideas: (1) each word has a unique vector, and (2) documents also have unique vectors. This allows for the calculation of similarity between documents.<\/p>\n<h3>2.1 Mechanism of Doc2Vec<\/h3>\n<p>The Doc2Vec model uses two variants: Distributed Bag of Words (DBOW) and Distributed Memory (DM) methods. The DBOW method predicts words based only on the document vector, while the DM method uses both word and document vectors to predict the next word. By combining these two methods, richer document representations can be obtained.<\/p>\n<h3>2.2 Learning Process<\/h3>\n<p>The learning process of Doc2Vec proceeds through a large corpus of text data. Documents and words are provided together, and the model learns a unique vector for each document. Once trained, this vector can be used to compare the similarity between documents.<\/p>\n<h2>3. Understanding Public Business Report Data<\/h2>\n<p>Public business reports are important documents that communicate a company&#8217;s financial status and management performance to shareholders. These documents exist in large quantities and are essential materials for long-term company analysis. However, these documents are composed of unstructured data, which has limitations under simple text analysis.<\/p>\n<h3>3.1 Structure of Public Business Reports<\/h3>\n<p>Public business reports typically include the following components:<\/p>\n<ul>\n<li>Company Overview and Business Model<\/li>\n<li>Financial Statements<\/li>\n<li>Key Management Indicators<\/li>\n<li>Risk Factor Analysis<\/li>\n<li>Future Outlook and Plans<\/li>\n<\/ul>\n<p>By analyzing this information using natural language processing techniques, the similarity between documents can be evaluated.<\/p>\n<h2>4. Calculating Similarity Using Doc2Vec<\/h2>\n<p>The process of calculating the similarity of public business reports involves several steps. This procedure includes data collection, preprocessing, training the Doc2Vec model, and similarity calculation.<\/p>\n<h3>4.1 Data Collection<\/h3>\n<p>Public business reports must be collected from various modern information sources. Mechanical collection methods include web scraping and using APIs, which can secure data in various formats.<\/p>\n<h3>4.2 Data Preprocessing<\/h3>\n<p>The collected data must be organized into document form through preprocessing. Typical preprocessing steps include:<\/p>\n<ul>\n<li>Removing stop words<\/li>\n<li>Stemming or Lemmatization<\/li>\n<li>Removing special characters and numbers<\/li>\n<li>Tokenization<\/li>\n<\/ul>\n<p>Through these processes, the meanings of the words can be clarified, enhancing the training efficiency of the Doc2Vec model.<\/p>\n<h3>4.3 Training the Doc2Vec Model<\/h3>\n<p>After preprocessing, the Doc2Vec model is trained. Using the gensim library in Python, the Doc2Vec model can be efficiently created. Here is a sample code:<\/p>\n<pre><code>import gensim\n\nfrom gensim.models import Doc2Vec\n\nfrom nltk.tokenize import word_tokenize\n\n\n\n# Load data\n\ndocuments = [...]  # Preprocessed business report data list\n\ntagged_data = [gensim.models.doc2vec.TaggedDocument(words=word_tokenize(doc), tags=[str(i)]) for i, doc in enumerate(documents)]\n\n\n\n# Initialize and train the Doc2Vec model\n\nmodel = Doc2Vec(vector_size=20, min_count=1, epochs=100)\n\nmodel.build_vocab(tagged_data)\n\nmodel.train(tagged_data, total_examples=model.corpus_count, epochs=model.epochs)<\/code><\/pre>\n<h3>4.4 Similarity Calculation<\/h3>\n<p>After the model training is complete, the vectors for each business report document are extracted, and the similarity between the documents is calculated. The gensim library can be used to easily analyze similarity:<\/p>\n<pre><code># Similarity calculation\n\nsimilarity = model.wv.n_similarity([\"Content of Business Report 1\"], [\"Content of Business Report 2\"])<\/code><\/pre>\n<p>Using the code above, the similarity between the two documents can be obtained as a value between 0 and 1. A value closer to 1 indicates a higher similarity between the two documents.<\/p>\n<h2>5. Results and Analysis<\/h2>\n<p>The analysis results of the model numerically indicate the similarity between public business reports, which can be used in business and financial analysis. For example, two documents showing high similarity may belong to similar industries or reflect similar decisions.<\/p>\n<h3>5.1 Visualization of Results<\/h3>\n<p>It is also important to visualize the calculated similarity results for analysis. Libraries like matplotlib and seaborn can be used to carry out data visualization:<\/p>\n<pre><code>import matplotlib.pyplot as plt\n\nimport seaborn as sns\n\n\n\n# Create data frame\n\nimport pandas as pd\n\n\n\nsimilarity_data = pd.DataFrame(similarity_list, columns=['Document1', 'Document2', 'Similarity'])\n\nsns.heatmap(similarity_data.pivot(\"Document1\", \"Document2\", \"Similarity\"), annot=True)<\/code><\/pre>\n<h2>6. Conclusion<\/h2>\n<p>Calculating similarity using Doc2Vec has become a very useful tool in analyzing unstructured data such as public business reports. With deep learning-based natural language processing technologies, the quality of company analysis can be improved, supporting more effective decision-making. In the future, more sophisticated models may contribute to in-depth analysis and predictive modeling of public business reports.<\/p>\n<h2>7. References<\/h2>\n<ul>\n<li>Le, Q., &amp; Mikolov, T. (2014). Distributed Representations of Sentences and Documents. In Proceedings of the International Conference on Machine Learning (ICML).<\/li>\n<li>Goldwater, S., &amp; Griffiths, T. L. (2007). A fully Bayesian approach to unsupervised part-of-speech tagging. In Proceedings of the Association for Computational Linguistics (ACL).<\/li>\n<\/ul>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Natural Language Processing (NLP) is a subfield of computer science that encompasses the interaction between computers and human language, and is one of the important areas of artificial intelligence. With the advancement of deep learning technologies, NLP is greatly helping to address various problems. In particular, Doc2Vec is one of the effective methodologies for calculating &hellip; <a href=\"https:\/\/atmokpo.com\/w\/32273\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Deep Learning for Natural Language Processing, Calculating Similarity of Disclosure Business Reports with Doc2Vec&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[104],"tags":[],"class_list":["post-32273","post","type-post","status-publish","format-standard","hentry","category---en"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Deep Learning for Natural Language Processing, Calculating Similarity of Disclosure Business Reports with Doc2Vec - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/32273\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Deep Learning for Natural Language Processing, Calculating Similarity of Disclosure Business Reports with Doc2Vec - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Natural Language Processing (NLP) is a subfield of computer science that encompasses the interaction between computers and human language, and is one of the important areas of artificial intelligence. With the advancement of deep learning technologies, NLP is greatly helping to address various problems. In particular, Doc2Vec is one of the effective methodologies for calculating &hellip; \ub354 \ubcf4\uae30 &quot;Deep Learning for Natural Language Processing, Calculating Similarity of Disclosure Business Reports with Doc2Vec&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/32273\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:07:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:19:25+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"5\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/32273\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32273\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Deep Learning for Natural Language Processing, Calculating Similarity of Disclosure Business Reports with Doc2Vec\",\"datePublished\":\"2024-11-01T09:07:24+00:00\",\"dateModified\":\"2024-11-01T11:19:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32273\/\"},\"wordCount\":900,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning natural language processing\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/32273\/\",\"url\":\"https:\/\/atmokpo.com\/w\/32273\/\",\"name\":\"Deep Learning for Natural Language Processing, Calculating Similarity of Disclosure Business Reports with Doc2Vec - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:07:24+00:00\",\"dateModified\":\"2024-11-01T11:19:25+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32273\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/32273\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/32273\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Deep Learning for Natural Language Processing, Calculating Similarity of Disclosure Business Reports with Doc2Vec\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Deep Learning for Natural Language Processing, Calculating Similarity of Disclosure Business Reports with Doc2Vec - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/32273\/","og_locale":"ko_KR","og_type":"article","og_title":"Deep Learning for Natural Language Processing, Calculating Similarity of Disclosure Business Reports with Doc2Vec - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Natural Language Processing (NLP) is a subfield of computer science that encompasses the interaction between computers and human language, and is one of the important areas of artificial intelligence. With the advancement of deep learning technologies, NLP is greatly helping to address various problems. In particular, Doc2Vec is one of the effective methodologies for calculating &hellip; \ub354 \ubcf4\uae30 \"Deep Learning for Natural Language Processing, Calculating Similarity of Disclosure Business Reports with Doc2Vec\"","og_url":"https:\/\/atmokpo.com\/w\/32273\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:07:24+00:00","article_modified_time":"2024-11-01T11:19:25+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"5\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/32273\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/32273\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Deep Learning for Natural Language Processing, Calculating Similarity of Disclosure Business Reports with Doc2Vec","datePublished":"2024-11-01T09:07:24+00:00","dateModified":"2024-11-01T11:19:25+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/32273\/"},"wordCount":900,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning natural language processing"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/32273\/","url":"https:\/\/atmokpo.com\/w\/32273\/","name":"Deep Learning for Natural Language Processing, Calculating Similarity of Disclosure Business Reports with Doc2Vec - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:07:24+00:00","dateModified":"2024-11-01T11:19:25+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/32273\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/32273\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/32273\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Deep Learning for Natural Language Processing, Calculating Similarity of Disclosure Business Reports with Doc2Vec"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/32273","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=32273"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/32273\/revisions"}],"predecessor-version":[{"id":32274,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/32273\/revisions\/32274"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=32273"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=32273"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=32273"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}