{"id":36193,"date":"2024-11-01T09:46:32","date_gmt":"2024-11-01T09:46:32","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=36193"},"modified":"2024-11-01T09:46:32","modified_gmt":"2024-11-01T09:46:32","slug":"hugging-face-transformer-utilization-course-moderna-covid-19-wikipedia-text-retrieval","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/36193\/","title":{"rendered":"&#8220;Hugging Face Transformer Utilization Course, Moderna COVID-19 Wikipedia Text Retrieval&#8221;"},"content":{"rendered":"<p><body><\/p>\n<p>With the advancements in deep learning and Natural Language Processing (NLP), the methods for processing and analyzing text data have diversified. In this post, I will explain in detail how to retrieve COVID-19 information related to Moderna from Wikipedia using the Hugging Face library. Hugging Face Transformers provide many pretrained models widely used in NLP tasks, allowing users to easily analyze text data.<\/p>\n<h2>1. What is Hugging Face?<\/h2>\n<p>Hugging Face is a platform that provides various pretrained models and tools to facilitate easy use of NLP models. In particular, the <strong>Transformers<\/strong> library includes various state-of-the-art transformer models, such as BERT, GPT-2, and T5, enabling users to perform natural language processing tasks more easily.<\/p>\n<h3>1.1 Key Features of Hugging Face<\/h3>\n<ul>\n<li>Provision of pretrained models: Pretrained models for various NLP tasks are available.<\/li>\n<li>Easy utilization of models: Models can be used straightforwardly without writing complex code.<\/li>\n<li>Large community: User-created models and datasets are shared, providing various options to choose from.<\/li>\n<\/ul>\n<h2>2. Installation and Environment Setup<\/h2>\n<p>To use the Hugging Face library, you need to set up a Python environment. You can install the required libraries with the command below.<\/p>\n<pre><code>pip install transformers wikipedia-api<\/code><\/pre>\n<h2>3. Retrieving Information from Wikipedia<\/h2>\n<p>To retrieve information related to Moderna and COVID-19 from Wikipedia, we will use <strong>wikipedia-api<\/strong>. This library provides the ability to easily search Wikipedia pages and fetch their content.<\/p>\n<h3>3.1 Example of Retrieving Wikipedia Data<\/h3>\n<p>The code below is a simple example that searches for information about Moderna and prints the content.<\/p>\n<pre><code>import wikipediaapi\n\n    # Initialize Wikipedia API\n    wiki_wiki = wikipediaapi.Wikipedia('en')\n\n    # Retrieve \"Moderna\" page\n    page = wiki_wiki.page(\"Moderna\")\n\n    # Print page content\n    if page.exists():\n        print(\"Title: \", page.title)\n        print(\"Summary: \", page.summary[0:1000])  # Print first 1000 characters\n    else:\n        print(\"Page does not exist.\")<\/code><\/pre>\n<p>By running the above code, you can retrieve content from the Wikipedia page of Moderna. Now, let&#8217;s check for additional information related to COVID-19.<\/p>\n<h3>3.2 Retrieving COVID-19 Related Information<\/h3>\n<p>Similarly, the code to retrieve information about COVID-19 from Wikipedia is as follows.<\/p>\n<pre><code># Retrieve \"COVID-19\" page\n    covid_page = wiki_wiki.page(\"COVID-19\")\n\n    # Print page content\n    if covid_page.exists():\n        print(\"Title: \", covid_page.title)\n        print(\"Summary: \", covid_page.summary[0:1000])  # Print first 1000 characters\n    else:\n        print(\"Page does not exist.\")<\/code><\/pre>\n<h2>4. Text Preprocessing<\/h2>\n<p>The text retrieved from Wikipedia must go through a preprocessing step before being inputted into the model. This process involves removing unnecessary characters or symbols and organizing the necessary information.<\/p>\n<h3>4.1 Preprocessing Steps<\/h3>\n<p>The code below shows how to remove unnecessary characters from the retrieved text and organize it in a list format.<\/p>\n<pre><code>import re\n\n    def preprocess_text(text):\n        # Remove special characters\n        text = re.sub(r'[^A-Za-z0-9\\s]', '', text)\n        # Replace multiple spaces with a single space\n        text = re.sub(r'\\s+', ' ', text)\n        return text.strip()\n\n    # Example of preprocessing\n    processed_text_moderna = preprocess_text(page.summary)\n    processed_text_covid = preprocess_text(covid_page.summary)\n\n    print(\"Processed Moderna Text: \", processed_text_moderna)\n    print(\"Processed COVID-19 Text: \", processed_text_covid)<\/code><\/pre>\n<h2>5. Analyzing Information with Hugging Face Transformers<\/h2>\n<p>To analyze the retrieved data, we can use Hugging Face Transformers. Here, we will look at how to input the preprocessed text into the BERT model to extract features.<\/p>\n<h3>5.1 Using BERT Model<\/h3>\n<p>Let&#8217;s use the Hugging Face BERT model to extract features from the preprocessed text. Please refer to the code below.<\/p>\n<pre><code>from transformers import BertTokenizer, BertModel\n    import torch\n\n    # Load BERT model and tokenizer\n    model_name = 'bert-base-multilingual-cased'\n    tokenizer = BertTokenizer.from_pretrained(model_name)\n    model = BertModel.from_pretrained(model_name)\n\n    # Tokenize text and convert to tensor\n    inputs = tokenizer(processed_text_moderna, return_tensors='pt', padding=True, truncation=True)\n\n    # Feed into model and extract features\n    with torch.no_grad():\n        outputs = model(**inputs)\n    \n    # Feature vector\n    embeddings = outputs.last_hidden_state\n    print(\"Embedding Size: \", embeddings.shape)<\/code><\/pre>\n<h2>6. Practice Example: Summarizing COVID-19 Related Documents<\/h2>\n<p>Now we will create a summary based on COVID-19 information. We can generate a summary using the <strong>GPT-2<\/strong> model from the Hugging Face library.<\/p>\n<h3>6.1 Summarizing with GPT-2 Model<\/h3>\n<pre><code>from transformers import GPT2Tokenizer, GPT2LMHeadModel\n\n    # Load GPT-2 model and tokenizer\n    gpt2_model = GPT2LMHeadModel.from_pretrained('gpt2')\n    gpt2_tokenizer = GPT2Tokenizer.from_pretrained('gpt2')\n\n    # Input text for summarization\n    input_text = \"COVID-19 is caused by SARS-CoV-2...\"\n    input_ids = gpt2_tokenizer.encode(input_text, return_tensors='pt')\n\n    # Generate summary\n    summary_ids = gpt2_model.generate(input_ids, max_length=50, num_beams=5, early_stopping=True)\n    summary = gpt2_tokenizer.decode(summary_ids[0], skip_special_tokens=True)\n\n    print(\"Generated Summary: \", summary)<\/code><\/pre>\n<h2>Conclusion<\/h2>\n<p>In this post, we explored how to retrieve information related to Moderna and COVID-19 from Wikipedia using Hugging Face Transformers, as well as the processes of preprocessing and analyzing the data. Hugging Face is a great tool for easily utilizing the latest natural language processing models, enabling more effective utilization of text data. In the future, we can further develop our data analysis skills through various NLP tasks.<\/p>\n<p>Moreover, Hugging Face is continuously updating new models and datasets through collaboration with the community, so ongoing learning and application are encouraged. I hope you will challenge yourselves with diverse NLP tasks and achieve greater achievements.<\/p>\n<h2>References<\/h2>\n<ul>\n<li><a href=\"https:\/\/huggingface.co\/docs\/transformers\/index\" target=\"_blank\" rel=\"noopener\">Hugging Face Transformers Documentation<\/a><\/li>\n<li><a href=\"https:\/\/pypi.org\/project\/wikipedia-api\/\" target=\"_blank\" rel=\"noopener\">wikipedia-api PyPI<\/a><\/li>\n<li><a href=\"https:\/\/en.wikipedia.org\/wiki\/COVID-19\" target=\"_blank\" rel=\"noopener\">COVID-19 Wikipedia<\/a><\/li>\n<\/ul>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>With the advancements in deep learning and Natural Language Processing (NLP), the methods for processing and analyzing text data have diversified. In this post, I will explain in detail how to retrieve COVID-19 information related to Moderna from Wikipedia using the Hugging Face library. Hugging Face Transformers provide many pretrained models widely used in NLP &hellip; <a href=\"https:\/\/atmokpo.com\/w\/36193\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;&#8220;Hugging Face Transformer Utilization Course, Moderna COVID-19 Wikipedia Text Retrieval&#8221;&#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":[108],"tags":[],"class_list":["post-36193","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>&quot;Hugging Face Transformer Utilization Course, Moderna COVID-19 Wikipedia Text Retrieval&quot; - \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\/36193\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"&quot;Hugging Face Transformer Utilization Course, Moderna COVID-19 Wikipedia Text Retrieval&quot; - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"With the advancements in deep learning and Natural Language Processing (NLP), the methods for processing and analyzing text data have diversified. In this post, I will explain in detail how to retrieve COVID-19 information related to Moderna from Wikipedia using the Hugging Face library. Hugging Face Transformers provide many pretrained models widely used in NLP &hellip; \ub354 \ubcf4\uae30 &quot;&#8220;Hugging Face Transformer Utilization Course, Moderna COVID-19 Wikipedia Text Retrieval&#8221;&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/36193\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:46:32+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=\"4\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/36193\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36193\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"&#8220;Hugging Face Transformer Utilization Course, Moderna COVID-19 Wikipedia Text Retrieval&#8221;\",\"datePublished\":\"2024-11-01T09:46:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36193\/\"},\"wordCount\":551,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Using Hugging Face\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/36193\/\",\"url\":\"https:\/\/atmokpo.com\/w\/36193\/\",\"name\":\"\\\"Hugging Face Transformer Utilization Course, Moderna COVID-19 Wikipedia Text Retrieval\\\" - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:46:32+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36193\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/36193\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/36193\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"&#8220;Hugging Face Transformer Utilization Course, Moderna COVID-19 Wikipedia Text Retrieval&#8221;\"}]},{\"@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":"\"Hugging Face Transformer Utilization Course, Moderna COVID-19 Wikipedia Text Retrieval\" - \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\/36193\/","og_locale":"ko_KR","og_type":"article","og_title":"\"Hugging Face Transformer Utilization Course, Moderna COVID-19 Wikipedia Text Retrieval\" - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"With the advancements in deep learning and Natural Language Processing (NLP), the methods for processing and analyzing text data have diversified. In this post, I will explain in detail how to retrieve COVID-19 information related to Moderna from Wikipedia using the Hugging Face library. Hugging Face Transformers provide many pretrained models widely used in NLP &hellip; \ub354 \ubcf4\uae30 \"&#8220;Hugging Face Transformer Utilization Course, Moderna COVID-19 Wikipedia Text Retrieval&#8221;\"","og_url":"https:\/\/atmokpo.com\/w\/36193\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:46:32+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":"4\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/36193\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/36193\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"&#8220;Hugging Face Transformer Utilization Course, Moderna COVID-19 Wikipedia Text Retrieval&#8221;","datePublished":"2024-11-01T09:46:32+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/36193\/"},"wordCount":551,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Using Hugging Face"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/36193\/","url":"https:\/\/atmokpo.com\/w\/36193\/","name":"\"Hugging Face Transformer Utilization Course, Moderna COVID-19 Wikipedia Text Retrieval\" - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:46:32+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/36193\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/36193\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/36193\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"&#8220;Hugging Face Transformer Utilization Course, Moderna COVID-19 Wikipedia Text Retrieval&#8221;"}]},{"@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\/36193","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=36193"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/36193\/revisions"}],"predecessor-version":[{"id":36194,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/36193\/revisions\/36194"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=36193"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=36193"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=36193"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}