{"id":36487,"date":"2024-11-01T09:48:52","date_gmt":"2024-11-01T09:48:52","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=36487"},"modified":"2024-11-01T11:52:59","modified_gmt":"2024-11-01T11:52:59","slug":"deep-learning-pytorch-course-principles-of-gan-operation","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/36487\/","title":{"rendered":"Deep Learning PyTorch Course, Principles of GAN Operation"},"content":{"rendered":"<p><body><\/p>\n<p>Generative Adversarial Networks (GAN) is an innovative deep learning technique introduced by Ian Goodfellow and his colleagues in 2014. GAN consists of two neural networks known as the &#8216;Generator&#8217; and the &#8216;Discriminator&#8217;. These two networks compete with each other as they learn, aiming to generate high-quality data. In this course, we will explore the mechanism of GAN, its components, the training process, and an implementation example using PyTorch in detail.<\/p>\n<h2>1. Basic Structure of GAN<\/h2>\n<p>GAN is set up as a competitive structure between two neural networks, namely the Generator and the Discriminator. This structure works as follows:<\/p>\n<ol>\n<li><strong>Generator:<\/strong> Takes a random noise vector as input and generates fake data.<\/li>\n<li><strong>Discriminator:<\/strong> Determines whether the given data is real or fake data created by the Generator.<\/li>\n<\/ol>\n<p>These two networks are trained simultaneously, with the Generator improving to create fake data that deceives the Discriminator, and the Discriminator improving to distinguish between fake and real data.<\/p>\n<h2>2. Mathematical Operating Principle of GAN<\/h2>\n<p>The goal of GAN is to minimize the following cost function:<\/p>\n<pre><code>\nD\\*(x) = log(D(x)) + log(1 - D(G(z)))\n    <\/code><\/pre>\n<p>Where,<\/p>\n<ul>\n<li><code>D(x):<\/code> The output of the Discriminator for the real data x. (Closer to 1 means real data, closer to 0 means fake data)<\/li>\n<li><code>G(z):<\/code> The data generated by the Generator through random noise z.<\/li>\n<li><code>D(G(z)):<\/code> The probability returned by the Discriminator for the generated data.<\/li>\n<\/ul>\n<p>The goal is for the Discriminator to output 1 for real data and 0 for generated data. This allows the Generator to continuously produce data that is increasingly similar to real data.<\/p>\n<h2>3. Components of GAN<\/h2>\n<h3>3.1 Generator<\/h3>\n<p>The Generator is typically composed of fully connected layers or convolutional layers. It takes a random vector z as input and generates information similar to real data.<\/p>\n<h3>3.2 Discriminator<\/h3>\n<p>The Discriminator receives input data (either real or generated) to judge whether it is real or fake. This can also be designed as a fully connected or convolutional network.<\/p>\n<h2>4. Training Process of GAN<\/h2>\n<p>The training of GAN consists of the following steps:<\/p>\n<ol>\n<li>Select real data and sample a random noise vector z.<\/li>\n<li>The Generator takes the noise z as input and creates fake data.<\/li>\n<li>The Discriminator evaluates the real data and the data created by the Generator.<\/li>\n<li>Calculate the Discriminator&#8217;s loss and perform backpropagation to update the Discriminator.<\/li>\n<li>Calculate the Generator&#8217;s loss and perform backpropagation to update the Generator.<\/li>\n<\/ol>\n<p>This process is repeated, improving both networks.<\/p>\n<h2>5. PyTorch Implementation Example of GAN<\/h2>\n<p>The following is a simple example of implementing GAN using PyTorch. Here, we will create a model that generates digit images using the MNIST dataset.<\/p>\n<h3>5.1 Install Libraries and Load Dataset<\/h3>\n<pre><code>\nimport torch\nimport torch.nn as nn\nimport torch.optim as optim\nfrom torchvision import datasets, transforms\nfrom torch.utils.data import DataLoader\n    <\/code><\/pre>\n<p>First, we import the necessary libraries and load the MNIST dataset.<\/p>\n<pre><code>\n# Download and load the MNIST dataset\ntransform = transforms.Compose([\n    transforms.Resize(28),\n    transforms.ToTensor(),\n])\n\nmnist = datasets.MNIST(root='.\/data', train=True, transform=transform, download=True)\ndataloader = DataLoader(mnist, batch_size=64, shuffle=True)\n    <\/code><\/pre>\n<h3>5.2 Define the Generator Model<\/h3>\n<p>The Generator model takes random noise as input and generates images similar to real ones.<\/p>\n<pre><code>\nclass Generator(nn.Module):\n    def __init__(self):\n        super(Generator, self).__init__()\n        self.model = nn.Sequential(\n            nn.Linear(100, 128),\n            nn.ReLU(),\n            nn.Linear(128, 256),\n            nn.ReLU(),\n            nn.Linear(256, 512),\n            nn.ReLU(),\n            nn.Linear(512, 28*28),  # MNIST image size\n            nn.Tanh()  # Adjusting pixel value range to [-1, 1]\n        )\n\n    def forward(self, z):\n        return self.model(z).view(-1, 1, 28, 28)\n    <\/code><\/pre>\n<h3>5.3 Define the Discriminator Model<\/h3>\n<p>The Discriminator model takes an input image and determines whether it is real or generated.<\/p>\n<pre><code>\nclass Discriminator(nn.Module):\n    def __init__(self):\n        super(Discriminator, self).__init__()\n        self.model = nn.Sequential(\n            nn.Flatten(),  # Flattening the image shape into one dimension\n            nn.Linear(28*28, 512),\n            nn.LeakyReLU(0.2),\n            nn.Linear(512, 256),\n            nn.LeakyReLU(0.2),\n            nn.Linear(256, 1),\n            nn.Sigmoid()  # Output probability\n        )\n\n    def forward(self, x):\n        return self.model(x)\n    <\/code><\/pre>\n<h3>5.4 Define Loss Function and Optimizers<\/h3>\n<pre><code>\n# Create Generator and Discriminator\ngenerator = Generator()\ndiscriminator = Discriminator()\n\n# Loss function\ncriterion = nn.BCELoss()\n\n# Optimizers\noptimizer_g = optim.Adam(generator.parameters(), lr=0.0002, betas=(0.5, 0.999))\noptimizer_d = optim.Adam(discriminator.parameters(), lr=0.0002, betas=(0.5, 0.999))\n    <\/code><\/pre>\n<h3>5.5 GAN Training Loop<\/h3>\n<p>Now, we define the loop to train GAN. In each epoch, we update the Discriminator and Generator.<\/p>\n<pre><code>\nnum_epochs = 50\n\nfor epoch in range(num_epochs):\n    for real_images, _ in dataloader:\n        batch_size = real_images.size(0)\n\n        # Labels for real images\n        real_labels = torch.ones(batch_size, 1)\n        # Labels for fake images\n        fake_labels = torch.zeros(batch_size, 1)\n\n        # Train Discriminator\n        discriminator.zero_grad()\n        outputs = discriminator(real_images)\n        d_loss_real = criterion(outputs, real_labels)\n        d_loss_real.backward()\n\n        # Generate fake data\n        noise = torch.randn(batch_size, 100)\n        fake_images = generator(noise)\n\n        outputs = discriminator(fake_images.detach())\n        d_loss_fake = criterion(outputs, fake_labels)\n        d_loss_fake.backward()\n\n        optimizer_d.step()\n\n        # Train Generator\n        generator.zero_grad()\n        outputs = discriminator(fake_images)\n        g_loss = criterion(outputs, real_labels)\n        g_loss.backward()\n        optimizer_g.step()\n\n    print(f'Epoch [{epoch+1}\/{num_epochs}], d_loss: {d_loss_real.item() + d_loss_fake.item()}, g_loss: {g_loss.item()}')\n    <\/code><\/pre>\n<h2>6. Applications of GAN<\/h2>\n<p>GAN can be applied in various fields. Some examples include:<\/p>\n<ul>\n<li>Image generation and transformation<\/li>\n<li>Video generation<\/li>\n<li>Music generation<\/li>\n<li>Data augmentation<\/li>\n<li>Medical image analysis<\/li>\n<li>Style transfer<\/li>\n<\/ul>\n<h2>7. Conclusion<\/h2>\n<p>GAN is a highly innovative concept in the field of deep learning, widely used for data generation and transformation. In this course, we explored the basic principles of GAN and a simple implementation method using PyTorch. Despite being a very challenging technique due to the complexity of the model and instability during training, its potential is tremendous.<\/p>\n<p>I encourage you to learn about various modifications and advanced techniques of GAN and apply them to real-world projects.<\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Generative Adversarial Networks (GAN) is an innovative deep learning technique introduced by Ian Goodfellow and his colleagues in 2014. GAN consists of two neural networks known as the &#8216;Generator&#8217; and the &#8216;Discriminator&#8217;. These two networks compete with each other as they learn, aiming to generate high-quality data. In this course, we will explore the mechanism &hellip; <a href=\"https:\/\/atmokpo.com\/w\/36487\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;Deep Learning PyTorch Course, Principles of GAN Operation&#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":[149],"tags":[],"class_list":["post-36487","post","type-post","status-publish","format-standard","hentry","category-pytorch-study"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Deep Learning PyTorch Course, Principles of GAN Operation - \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\/36487\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Deep Learning PyTorch Course, Principles of GAN Operation - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Generative Adversarial Networks (GAN) is an innovative deep learning technique introduced by Ian Goodfellow and his colleagues in 2014. GAN consists of two neural networks known as the &#8216;Generator&#8217; and the &#8216;Discriminator&#8217;. These two networks compete with each other as they learn, aiming to generate high-quality data. In this course, we will explore the mechanism &hellip; \ub354 \ubcf4\uae30 &quot;Deep Learning PyTorch Course, Principles of GAN Operation&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/36487\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:48:52+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:52:59+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\/36487\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36487\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"Deep Learning PyTorch Course, Principles of GAN Operation\",\"datePublished\":\"2024-11-01T09:48:52+00:00\",\"dateModified\":\"2024-11-01T11:52:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36487\/\"},\"wordCount\":601,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"PyTorch Study\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/36487\/\",\"url\":\"https:\/\/atmokpo.com\/w\/36487\/\",\"name\":\"Deep Learning PyTorch Course, Principles of GAN Operation - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:48:52+00:00\",\"dateModified\":\"2024-11-01T11:52:59+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36487\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/36487\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/36487\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Deep Learning PyTorch Course, Principles of GAN Operation\"}]},{\"@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 PyTorch Course, Principles of GAN Operation - \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\/36487\/","og_locale":"ko_KR","og_type":"article","og_title":"Deep Learning PyTorch Course, Principles of GAN Operation - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Generative Adversarial Networks (GAN) is an innovative deep learning technique introduced by Ian Goodfellow and his colleagues in 2014. GAN consists of two neural networks known as the &#8216;Generator&#8217; and the &#8216;Discriminator&#8217;. These two networks compete with each other as they learn, aiming to generate high-quality data. In this course, we will explore the mechanism &hellip; \ub354 \ubcf4\uae30 \"Deep Learning PyTorch Course, Principles of GAN Operation\"","og_url":"https:\/\/atmokpo.com\/w\/36487\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:48:52+00:00","article_modified_time":"2024-11-01T11:52:59+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\/36487\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/36487\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"Deep Learning PyTorch Course, Principles of GAN Operation","datePublished":"2024-11-01T09:48:52+00:00","dateModified":"2024-11-01T11:52:59+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/36487\/"},"wordCount":601,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["PyTorch Study"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/36487\/","url":"https:\/\/atmokpo.com\/w\/36487\/","name":"Deep Learning PyTorch Course, Principles of GAN Operation - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:48:52+00:00","dateModified":"2024-11-01T11:52:59+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/36487\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/36487\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/36487\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"Deep Learning PyTorch Course, Principles of GAN Operation"}]},{"@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\/36487","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=36487"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/36487\/revisions"}],"predecessor-version":[{"id":36488,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/36487\/revisions\/36488"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=36487"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=36487"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=36487"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}