{"id":32305,"date":"2024-11-01T09:07:44","date_gmt":"2024-11-01T09:07:44","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=32305"},"modified":"2024-11-01T11:19:17","modified_gmt":"2024-11-01T11:19:17","slug":"deep-learning-for-natural-language-processing-intent-classification-using-pre-trained-word-embeddings","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/32305\/","title":{"rendered":"Deep Learning for Natural Language Processing: Intent Classification Using Pre-trained Word Embeddings"},"content":{"rendered":"<p><body><\/p>\n<p>Natural language processing is a technology that enables computers to understand and interpret human language. This technology is used in various fields including text analysis, translation, sentiment analysis, and has shown even faster and more accurate processing capabilities due to the advancements in deep learning in recent years. In particular, intent classification is the process of extracting specific intents from user input, which is an essential function for chatbots, customer support systems, and voice recognition systems.<\/p>\n<h2>1. What is Intent Classification?<\/h2>\n<p>Intent classification is the task of identifying the user&#8217;s intent from a given sentence or question. For example, when posed with the question &#8220;How&#8217;s the weather tomorrow?&#8221;, the user fundamentally has the intent of requesting weather information. The goal of intent classification is to accurately identify this intent and provide an appropriate response.<\/p>\n<h2>2. The Role of Deep Learning<\/h2>\n<p>Traditional natural language processing techniques primarily relied on rule-based systems or machine learning technologies. However, with the emergence of deep learning, it has become possible to learn patterns from large amounts of data and understand the nuances and context of natural language through more complex models. Deep learning especially demonstrates strong performance in the following cases:<\/p>\n<ul>\n<li>Large Amounts of Data: Deep learning models improve performance through large amounts of data.<\/li>\n<li>High-Dimensional Information: Language contains multidimensional and complex information, making deep learning neural networks useful.<\/li>\n<li>Non-Linear Relationships: Deep learning can grasp complex non-linear relationships and understand the various contexts of natural language.<\/li>\n<\/ul>\n<h2>3. Pre-trained Word Embeddings<\/h2>\n<p>Word embedding is a method of mapping words into a vector space to reflect the semantic similarities between each word. For example, &#8220;king&#8221; and &#8220;queen&#8221; are semantically similar, so these words are placed close to each other in vector space. Using pre-trained word embeddings provides the following advantages:<\/p>\n<ul>\n<li>Efficiency: Utilizing pre-trained models from large datasets can save time and costs.<\/li>\n<li>Generalization: Embeddings trained across various domains generalize well across different natural language processing tasks.<\/li>\n<li>Performance Improvement: Using pre-trained embeddings accelerates model performance and is effective even when training data is scarce.<\/li>\n<\/ul>\n<h2>4. Types of Pre-trained Word Embeddings<\/h2>\n<p>Examples of commonly used pre-trained word embeddings include the following models:<\/p>\n<h3>4.1 Word2Vec<\/h3>\n<p>Word2Vec is a model developed by Google that learns word embeddings using two architectures: Continuous Bag of Words (CBOW) and Skip-gram. CBOW predicts the center word using surrounding words, while Skip-gram predicts surrounding words using the center word.<\/p>\n<h3>4.2 GloVe<\/h3>\n<p>GloVe (Global Vectors for Word Representation) is a model developed by Facebook that understands relationships between words through global statistical information. GloVe places semantically similar words close together in vector space based on their co-occurrence probabilities.<\/p>\n<h3>4.3 FastText<\/h3>\n<p>FastText is a model developed by Facebook that learns by breaking words down into character n-grams. This allows words with similar meanings (e.g., &#8220;playing&#8221; and &#8220;play&#8221;) to have similar vectors, effectively addressing the OOV (Out-Of-Vocabulary) problem.<\/p>\n<h2>5. Building an Intent Classification Model<\/h2>\n<p>Now, let&#8217;s build a deep learning model for intent classification. This process can be broadly divided into stages: data collection and preprocessing, model design, training, and evaluation.<\/p>\n<h3>5.1 Data Collection and Preprocessing<\/h3>\n<p>To build an intent classification model, text data related to the intents is required. This data can be sourced from public datasets or collected through web scraping. After data collection, the following preprocessing steps must be carried out:<\/p>\n<ul>\n<li>Tokenization: The process of splitting sentences into individual words.<\/li>\n<li>Cleaning: Removing special characters, numbers, etc., to create clean data.<\/li>\n<li>Removing Stop Words: Eliminating words that do not add meaning (e.g., &#8220;this,&#8221; &#8220;is,&#8221; &#8220;of,&#8221; etc.) to enhance analysis efficiency.<\/li>\n<li>Embedding Transformation: Applying pre-trained embeddings to convert each word into a vector.<\/li>\n<\/ul>\n<h3>5.2 Model Design<\/h3>\n<p>The model for intent classification is primarily designed using Recurrent Neural Networks (RNN) or Long Short-Term Memory (LSTM) networks. Below is an example of a simple LSTM model:<\/p>\n<pre><code>import tensorflow as tf\nfrom tensorflow.keras.preprocessing.text import Tokenizer\nfrom tensorflow.keras.preprocessing.sequence import pad_sequences\nfrom tensorflow.keras.models import Sequential\nfrom tensorflow.keras.layers import Embedding, LSTM, Dense\n\n# Data preparation\nsentences = ['sentence1', 'sentence2', ...]  # List of sentences for intent classification\nlabels = [0, 1, ...]  # Labels for each sentence\n\n# Tokenization\ntokenizer = Tokenizer()\ntokenizer.fit_on_texts(sentences)\nsequences = tokenizer.texts_to_sequences(sentences)\n\n# Padding\nmax_length = max(len(seq) for seq in sequences)\npadded_sequences = pad_sequences(sequences, maxlen=max_length, padding='post')\n\n# Model building\nmodel = Sequential()\nmodel.add(Embedding(input_dim=len(tokenizer.word_index) + 1, output_dim=100, input_length=max_length))\nmodel.add(LSTM(128))\nmodel.add(Dense(1, activation='sigmoid'))\n\nmodel.compile(loss='binary_crossentropy', optimizer='adam', metrics=['accuracy'])\n<\/code><\/pre>\n<h3>5.3 Model Training<\/h3>\n<p>The model is trained using training and validation data. The training process involves multiple epochs that continuously improve the model&#8217;s performance.<\/p>\n<pre><code># Model training\nmodel.fit(padded_sequences, labels, epochs=10, validation_split=0.2)\n<\/code><\/pre>\n<h3>5.4 Model Evaluation and Prediction<\/h3>\n<p>After training is complete, the model can be evaluated using validation data and predictions can be made by inputting actual data.<\/p>\n<pre><code># Model evaluation\nloss, accuracy = model.evaluate(validation_data)\n\n# Prediction\npredictions = model.predict(new_data)\n<\/code><\/pre>\n<h2>6. Practical Applications<\/h2>\n<p>Intent classification models can be practically utilized in various fields. They play essential roles, especially in customer service chatbots, voice assistants, spam email filtering, and review analysis.<\/p>\n<h3>6.1 Chatbots<\/h3>\n<p>Chatbots are tools that provide automated responses to customer inquiries, accurately identifying user questions and generating appropriate responses through intent classification. For instance, a question like &#8220;I want a refund&#8221; requires providing information about the refund process.<\/p>\n<h3>6.2 Voice Assistants<\/h3>\n<p>Intent classification is also crucial in voice recognition services. When users request specific tasks through voice commands, understanding and executing these intents is vital. For example, it should provide an appropriate response to a request like &#8220;Book a movie.&#8221;<\/p>\n<h3>6.3 Review Analysis<\/h3>\n<p>Analyzing product reviews can help identify users&#8217; positive or negative intents, aiding in product improvements or marketing strategies.<\/p>\n<h2>7. Conclusion<\/h2>\n<p>Natural language processing using deep learning, particularly intent classification utilizing pre-trained word embeddings, has brought about innovative changes in various fields. By accurately understanding user intents, it enhances user experience in chatbots, voice assistants, and more. Further advancements in natural language processing technologies are anticipated.<\/p>\n<h2>References<\/h2>\n<ul>\n<li>Mikolov, T., Sutskever, I., Chen, K., Corrado, G., &amp; Dean, J. (2013). &#8216;Distributed Representations of Words and Phrases and their Compositionality&#8217;. In Advances in Neural Information Processing Systems, 26.<\/li>\n<li>Pennington, J., Socher, R., &amp; Manning, C. D. (2014). &#8216;GloVe: Global Vectors for Word Representation&#8217;. In Proceedings of the 2014 Conference on Empirical Methods in Natural Language Processing (EMNLP).<\/li>\n<li>Bojanowski, P., Grave, E., Mikolov, T., Sutskever, I., &amp; Jozefowicz, R. (2017). &#8216;Enriching Word Vectors with Subword Information&#8217;. Transactions of the Association for Computational Linguistics, 5, 135-146.<\/li>\n<\/ul>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Natural language processing is a technology that enables computers to understand and interpret human language. This technology is used in various fields including text analysis, translation, sentiment analysis, and has shown even faster and more accurate processing capabilities due to the advancements in deep learning in recent years. In particular, intent classification is the process &hellip; <a href=\"https:\/\/atmokpo.com\/w\/32305\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Deep Learning for Natural Language Processing: Intent Classification Using Pre-trained Word Embeddings&#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-32305","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: Intent Classification Using Pre-trained Word Embeddings - \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\/32305\/\" \/>\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: Intent Classification Using Pre-trained Word Embeddings - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Natural language processing is a technology that enables computers to understand and interpret human language. This technology is used in various fields including text analysis, translation, sentiment analysis, and has shown even faster and more accurate processing capabilities due to the advancements in deep learning in recent years. In particular, intent classification is the process &hellip; \ub354 \ubcf4\uae30 &quot;Deep Learning for Natural Language Processing: Intent Classification Using Pre-trained Word Embeddings&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/32305\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:07:44+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:19:17+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\/32305\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32305\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Deep Learning for Natural Language Processing: Intent Classification Using Pre-trained Word Embeddings\",\"datePublished\":\"2024-11-01T09:07:44+00:00\",\"dateModified\":\"2024-11-01T11:19:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32305\/\"},\"wordCount\":938,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning natural language processing\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/32305\/\",\"url\":\"https:\/\/atmokpo.com\/w\/32305\/\",\"name\":\"Deep Learning for Natural Language Processing: Intent Classification Using Pre-trained Word Embeddings - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:07:44+00:00\",\"dateModified\":\"2024-11-01T11:19:17+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32305\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/32305\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/32305\/#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: Intent Classification Using Pre-trained Word Embeddings\"}]},{\"@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: Intent Classification Using Pre-trained Word Embeddings - \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\/32305\/","og_locale":"ko_KR","og_type":"article","og_title":"Deep Learning for Natural Language Processing: Intent Classification Using Pre-trained Word Embeddings - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Natural language processing is a technology that enables computers to understand and interpret human language. This technology is used in various fields including text analysis, translation, sentiment analysis, and has shown even faster and more accurate processing capabilities due to the advancements in deep learning in recent years. In particular, intent classification is the process &hellip; \ub354 \ubcf4\uae30 \"Deep Learning for Natural Language Processing: Intent Classification Using Pre-trained Word Embeddings\"","og_url":"https:\/\/atmokpo.com\/w\/32305\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:07:44+00:00","article_modified_time":"2024-11-01T11:19:17+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\/32305\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/32305\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Deep Learning for Natural Language Processing: Intent Classification Using Pre-trained Word Embeddings","datePublished":"2024-11-01T09:07:44+00:00","dateModified":"2024-11-01T11:19:17+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/32305\/"},"wordCount":938,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning natural language processing"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/32305\/","url":"https:\/\/atmokpo.com\/w\/32305\/","name":"Deep Learning for Natural Language Processing: Intent Classification Using Pre-trained Word Embeddings - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:07:44+00:00","dateModified":"2024-11-01T11:19:17+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/32305\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/32305\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/32305\/#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: Intent Classification Using Pre-trained Word Embeddings"}]},{"@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\/32305","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=32305"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/32305\/revisions"}],"predecessor-version":[{"id":32306,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/32305\/revisions\/32306"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=32305"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=32305"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=32305"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}