{"id":32301,"date":"2024-11-01T09:07:41","date_gmt":"2024-11-01T09:07:41","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=32301"},"modified":"2024-11-01T11:19:19","modified_gmt":"2024-11-01T11:19:19","slug":"deep-learning-for-natural-language-processing-classifying-spam-emails-with-1d-cnn","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/32301\/","title":{"rendered":"Deep Learning for Natural Language Processing: Classifying Spam Emails with 1D CNN"},"content":{"rendered":"<p><body><\/p>\n<article>\n<header>\n<p>Author: [Author Name] | Date: [Date]<\/p>\n<\/header>\n<section>\n<h2>Introduction<\/h2>\n<p>\n                In recent years, deep learning technologies have rapidly advanced and are being applied in various fields.<br \/>\n                Among them, Natural Language Processing (NLP) is a technology that enables computers to understand and generate human language,<br \/>\n                and is used in various areas such as email classification, sentiment analysis, and machine translation.<br \/>\n                This article aims to explain in detail how to classify spam emails using a 1D Convolutional Neural Network (1D CNN).<br \/>\n                We will first look at the basics of NLP, then understand the structure and application of 1D CNN, and finally build a spam email classifier through practice.\n            <\/p>\n<\/section>\n<section>\n<h2>What is Natural Language Processing (NLP)?<\/h2>\n<p>\n                Natural Language Processing (NLP) is a branch of artificial intelligence (AI) that helps machines understand and<br \/>\n                interpret natural language. The main tasks in NLP include the following:\n            <\/p>\n<ul>\n<li>Word Embedding<\/li>\n<li>Syntax Parsing<\/li>\n<li>Sentiment Analysis<\/li>\n<li>Information Extraction<\/li>\n<li>Language Generation<\/li>\n<li>Spam Detection<\/li>\n<\/ul>\n<p>\n                Spam detection is one of the particularly important NLP tasks, as it allows for efficient email management by filtering unwanted emails for users.<br \/>\n                Traditionally, such classification tasks have been performed using rule-based approaches or machine learning techniques, but<br \/>\n                recently, deep learning technologies have shown high performance in solving these problems.\n            <\/p>\n<\/section>\n<section>\n<h2>Introduction to 1D CNN (1-dimensional Convolutional Neural Network)<\/h2>\n<p>\n                1D CNN is a neural network structure mainly applied to sequential data, and it is effective in processing one-dimensional data like text data.<br \/>\n                CNN is primarily used for image recognition but can also be applied to sequential data. The main components of a 1D CNN are as follows:\n            <\/p>\n<ul>\n<li><strong>Convolutional Layer:<\/strong> Responsible for feature extraction.<\/li>\n<li><strong>Pooling Layer:<\/strong> Reduces the dimensionality of the data and decreases computation costs.<\/li>\n<li><strong>Fully Connected Layer:<\/strong> Outputs the final classification result.<\/li>\n<\/ul>\n<p>\n                By using 1D CNN, it is possible to efficiently learn local patterns within the text. Therefore, it is suitable for NLP tasks such as spam email classification.\n            <\/p>\n<\/section>\n<section>\n<h2>Preparing the Dataset for Spam Email Classification<\/h2>\n<p>\n                Various datasets can be used for spam email classification.<br \/>\n                For example, the <a href=\"https:\/\/archive.ics.uci.edu\/ml\/datasets\/sms+spam+collection\" target=\"_blank\" rel=\"noopener\">SMS Spam Collection dataset<\/a><br \/>\n                can be used, and the email dataset includes the <a href=\"https:\/\/archive.ics.uci.edu\/ml\/datasets\/Spambase\" target=\"_blank\" rel=\"noopener\">Spambase dataset<\/a>.<br \/>\n                These datasets contain emails or messages labeled as spam or non-spam.\n            <\/p>\n<p>\n                To prepare the dataset, you first need to collect the data and proceed through data cleaning and preprocessing steps.<br \/>\n                This process includes the removal of special characters and stop words,<br \/>\n                text lowercasing, and tokenization.\n            <\/p>\n<\/section>\n<section>\n<h2>Text Preprocessing Steps<\/h2>\n<p>\n                The first step in building a spam email classification model is to preprocess the text data.<br \/>\n                The preprocessing procedure consists of the following steps:\n            <\/p>\n<ol>\n<li><strong>String Normalization:<\/strong> Converts all characters to lowercase and removes special symbols.<\/li>\n<li><strong>Tokenization:<\/strong> Splits sentences into words to convert each word into a token.<\/li>\n<li><strong>Stop Word Removal:<\/strong> Removes words that carry no meaning, such as &#8216;and&#8217;, &#8216;the&#8217;, &#8216;is&#8217;.<\/li>\n<li><strong>Stemming or Lemmatization:<\/strong> Extracts the base form of words.<\/li>\n<\/ol>\n<p>\n                After these preprocessing steps, each word must be converted into a vector.<br \/>\n                A commonly used method is the <strong>Word Embedding<\/strong> technique,<br \/>\n                with representative models being Word2Vec, GloVe, and FastText.<br \/>\n                This allows words to be represented as vectors in high-dimensional space, with similar-meaning words placed close together.\n            <\/p>\n<\/section>\n<section>\n<h2>Model Design and Training<\/h2>\n<p>\n                Now, it&#8217;s time to design and train the 1D CNN model based on the preprocessed data.<br \/>\n                The method to build a spam email classification model using Keras and TensorFlow is as follows:\n            <\/p>\n<h3>1. Model Design<\/h3>\n<p>\n                The 1D CNN model consists sequentially of convolutional layers, pooling layers, and fully connected layers.<br \/>\n                The structure of the model can be defined with the following example code:\n            <\/p>\n<pre>\n                <code>\nfrom keras.models import Sequential\nfrom keras.layers import Conv1D, MaxPooling1D, Flatten, Dense, Embedding, Dropout\n\nmodel = Sequential()\nmodel.add(Embedding(input_dim=vocab_size, output_dim=embedding_dim, input_length=max_length))\nmodel.add(Conv1D(filters=64, kernel_size=5, activation='relu'))\nmodel.add(MaxPooling1D(pool_size=2))\nmodel.add(Flatten())\nmodel.add(Dense(10, activation='relu'))\nmodel.add(Dropout(0.5))\nmodel.add(Dense(1, activation='sigmoid'))\n                <\/code>\n            <\/pre>\n<p>\n                In the above code, the embedding layer performs word embedding,<br \/>\n                the convolutional layer extracts features, and the pooling layer reduces dimensions.<br \/>\n                Finally, the output layer classifies whether it is spam or non-spam.\n            <\/p>\n<h3>2. Model Compilation and Training<\/h3>\n<p>\n                To compile and train the model, you need to set the loss function and optimization algorithm.<br \/>\n                Generally, for binary classification, the binary_crossentropy loss function is used.<br \/>\n                The following code shows how to compile and train the model:\n            <\/p>\n<pre>\n                <code>\nmodel.compile(optimizer='adam', loss='binary_crossentropy', metrics=['accuracy'])\nmodel.fit(X_train, y_train, epochs=10, batch_size=32, validation_split=0.2)\n                <\/code>\n            <\/pre>\n<p>\n                The trained model can be evaluated using a test dataset.<br \/>\n                The evaluation results can be checked in terms of accuracy and loss values.\n            <\/p>\n<\/section>\n<section>\n<h2>Model Performance Evaluation<\/h2>\n<p>\n                To evaluate the model&#8217;s performance, we utilize the test dataset.<br \/>\n                Commonly, metrics such as F1 Score, Precision, and Recall are used to evaluate the model.\n            <\/p>\n<h3>1. Explanation of Evaluation Metrics<\/h3>\n<ul>\n<li><strong>Accuracy:<\/strong> The ratio of correctly classified data among the total data.<\/li>\n<li><strong>Precision:<\/strong> The ratio of actual positives among those predicted as positive.<\/li>\n<li><strong>Recall:<\/strong> The ratio of correctly predicted positives among the actual positives.<\/li>\n<li><strong>F1 Score:<\/strong> The harmonic mean of Precision and Recall.<\/li>\n<\/ul>\n<h3>2. Performance Evaluation Code<\/h3>\n<p>\n                The following code shows how to evaluate the model&#8217;s performance:\n            <\/p>\n<pre>\n                <code>\nfrom sklearn.metrics import classification_report\n\ny_pred = model.predict(X_test)\ny_pred_classes = (y_pred > 0.5).astype(\"int32\")\nprint(classification_report(y_test, y_pred_classes))\n                <\/code>\n            <\/pre>\n<p>\n                This allows for a detailed assessment of how well the model performs classification.\n            <\/p>\n<\/section>\n<section>\n<h2>Conclusion<\/h2>\n<p>\n                In this article, we explored how to classify spam emails using 1D CNN.<br \/>\n                We explained the process of building and evaluating a spam email classifier by applying the fundamental technologies<br \/>\n                of NLP along with an understanding of deep learning and CNN structures.<br \/>\n                These technologies will be useful in solving more complex NLP problems in the future.<br \/>\n                We look forward to the innovations that deep learning will bring to the field of artificial intelligence.\n            <\/p>\n<\/section>\n<footer>\n<p>If you want more information and resources, please find me on [social media link]!<\/p>\n<p>Contact: [email address]<\/p>\n<\/footer>\n<\/article>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Author: [Author Name] | Date: [Date] Introduction In recent years, deep learning technologies have rapidly advanced and are being applied in various fields. Among them, Natural Language Processing (NLP) is a technology that enables computers to understand and generate human language, and is used in various areas such as email classification, sentiment analysis, and machine &hellip; <a href=\"https:\/\/atmokpo.com\/w\/32301\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Deep Learning for Natural Language Processing: Classifying Spam Emails with 1D CNN&#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-32301","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: Classifying Spam Emails with 1D CNN - \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\/32301\/\" \/>\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: Classifying Spam Emails with 1D CNN - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Author: [Author Name] | Date: [Date] Introduction In recent years, deep learning technologies have rapidly advanced and are being applied in various fields. Among them, Natural Language Processing (NLP) is a technology that enables computers to understand and generate human language, and is used in various areas such as email classification, sentiment analysis, and machine &hellip; \ub354 \ubcf4\uae30 &quot;Deep Learning for Natural Language Processing: Classifying Spam Emails with 1D CNN&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/32301\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:07:41+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:19:19+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\/32301\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32301\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Deep Learning for Natural Language Processing: Classifying Spam Emails with 1D CNN\",\"datePublished\":\"2024-11-01T09:07:41+00:00\",\"dateModified\":\"2024-11-01T11:19:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32301\/\"},\"wordCount\":874,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"Deep learning natural language processing\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/32301\/\",\"url\":\"https:\/\/atmokpo.com\/w\/32301\/\",\"name\":\"Deep Learning for Natural Language Processing: Classifying Spam Emails with 1D CNN - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:07:41+00:00\",\"dateModified\":\"2024-11-01T11:19:19+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/32301\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/32301\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/32301\/#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: Classifying Spam Emails with 1D CNN\"}]},{\"@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: Classifying Spam Emails with 1D CNN - \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\/32301\/","og_locale":"ko_KR","og_type":"article","og_title":"Deep Learning for Natural Language Processing: Classifying Spam Emails with 1D CNN - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Author: [Author Name] | Date: [Date] Introduction In recent years, deep learning technologies have rapidly advanced and are being applied in various fields. Among them, Natural Language Processing (NLP) is a technology that enables computers to understand and generate human language, and is used in various areas such as email classification, sentiment analysis, and machine &hellip; \ub354 \ubcf4\uae30 \"Deep Learning for Natural Language Processing: Classifying Spam Emails with 1D CNN\"","og_url":"https:\/\/atmokpo.com\/w\/32301\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:07:41+00:00","article_modified_time":"2024-11-01T11:19:19+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\/32301\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/32301\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Deep Learning for Natural Language Processing: Classifying Spam Emails with 1D CNN","datePublished":"2024-11-01T09:07:41+00:00","dateModified":"2024-11-01T11:19:19+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/32301\/"},"wordCount":874,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["Deep learning natural language processing"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/32301\/","url":"https:\/\/atmokpo.com\/w\/32301\/","name":"Deep Learning for Natural Language Processing: Classifying Spam Emails with 1D CNN - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:07:41+00:00","dateModified":"2024-11-01T11:19:19+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/32301\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/32301\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/32301\/#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: Classifying Spam Emails with 1D CNN"}]},{"@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\/32301","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=32301"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/32301\/revisions"}],"predecessor-version":[{"id":32302,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/32301\/revisions\/32302"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=32301"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=32301"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=32301"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}