{"id":36365,"date":"2024-11-01T09:47:51","date_gmt":"2024-11-01T09:47:51","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=36365"},"modified":"2024-11-01T11:00:13","modified_gmt":"2024-11-01T11:00:13","slug":"gan-deep-learning-using-pytorch-art-exhibition","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/36365\/","title":{"rendered":"GAN Deep Learning Using PyTorch, Art Exhibition"},"content":{"rendered":"<p><body><\/p>\n<h2>Introduction<\/h2>\n<p>\n        GAN (Generative Adversarial Network) is a type of generative model where two neural networks interact to generate new data. GANs are primarily used in various fields such as image generation, text generation, and music generation. In this article, we will implement GAN using the PyTorch library and detail the process of generating artwork that can be used in art exhibitions.\n    <\/p>\n<h2>1. Basic Concept of GAN<\/h2>\n<p>\n        GAN consists of two models, the Generator and the Discriminator. The Generator creates data based on random input, while the Discriminator distinguishes whether the given data is real or generated. The learning process of GAN is as follows.\n    <\/p>\n<ol>\n<li>The Generator receives random noise as input and generates fake images.<\/li>\n<li>The Discriminator compares the generated images with real images.<\/li>\n<li>The more the Discriminator misjudges fake images as real, the more the Generator learns to create better images.<\/li>\n<\/ol>\n<p>\n        This process results in the Discriminator becoming increasingly sophisticated, ensuring that the Generator cannot produce overly simplistic fake images.\n    <\/p>\n<h2>2. Installing PyTorch<\/h2>\n<p>\n        Before implementing GAN, you first need to install PyTorch. You can do this using the following command.\n    <\/p>\n<pre>\n    <code>\n    pip install torch torchvision\n    <\/code>\n    <\/pre>\n<h2>3. Preparing Data<\/h2>\n<p>\n        To generate images of artworks, a dataset is required. In this practice, we will use the CIFAR-10 dataset. This dataset consists of images from 10 classes and can be used to build a dataset related to pictorial arts. It can be easily used with built-in functions in PyTorch.\n    <\/p>\n<h3>3.1 CIFAR-10 Dataset<\/h3>\n<pre>\n    <code>\n    import torchvision.transforms as transforms\n    import torchvision.datasets as datasets\n    from torch.utils.data import DataLoader\n\n    # Data Preprocessing\n    transform = transforms.Compose([\n        transforms.Resize(64),\n        transforms.CenterCrop(64),\n        transforms.ToTensor(),\n        transforms.Normalize([0.5, 0.5, 0.5], [0.5, 0.5, 0.5]),\n    ])\n\n    # Load CIFAR-10 dataset\n    dataset = datasets.CIFAR10(root='.\/data', train=True, download=True, transform=transform)\n    dataloader = DataLoader(dataset, batch_size=128, shuffle=True, num_workers=2)\n    <\/code>\n    <\/pre>\n<h2>4. Implementing the GAN Model<\/h2>\n<p>\n        The GAN model requires two neural networks to define the Generator and the Discriminator. The Generator generates images based on random noise, while the Discriminator determines the authenticity of the images.\n    <\/p>\n<h3>4.1 Generator Model<\/h3>\n<pre>\n    <code>\n    import torch\n    import torch.nn as nn\n\n    class Generator(nn.Module):\n        def __init__(self):\n            super(Generator, self).__init__()\n            self.model = nn.Sequential(\n                nn.Linear(100, 256),\n                nn.ReLU(),\n                nn.Linear(256, 512),\n                nn.ReLU(),\n                nn.Linear(512, 1024),\n                nn.ReLU(),\n                nn.Linear(1024, 3*64*64),\n                nn.Tanh(),\n            )\n\n        def forward(self, z):\n            z = self.model(z)\n            return z.view(-1, 3, 64, 64)\n    <\/code>\n    <\/pre>\n<h3>4.2 Discriminator Model<\/h3>\n<pre>\n    <code>\n    class Discriminator(nn.Module):\n        def __init__(self):\n            super(Discriminator, self).__init__()\n            self.model = nn.Sequential(\n                nn.Linear(3*64*64, 512),\n                nn.LeakyReLU(0.2),\n                nn.Linear(512, 256),\n                nn.LeakyReLU(0.2),\n                nn.Linear(256, 1),\n                nn.Sigmoid(),\n            )\n\n        def forward(self, img):\n            img = img.view(-1, 3*64*64)\n            return self.model(img)\n    <\/code>\n    <\/pre>\n<h2>5. Setting Loss Function and Optimizers<\/h2>\n<p>\n        For training the GAN, you need to set the loss function and optimizers. Typically, Binary Cross Entropy Loss is used, and Adam optimization can be employed.\n    <\/p>\n<pre>\n    <code>\n    import torch.optim as optim\n\n    generator = Generator()\n    discriminator = Discriminator()\n\n    criterion = nn.BCELoss()\n    optimizer_G = optim.Adam(generator.parameters(), lr=0.0002, betas=(0.5, 0.999))\n    optimizer_D = optim.Adam(discriminator.parameters(), lr=0.0002, betas=(0.5, 0.999))\n    <\/code>\n    <\/pre>\n<h2>6. Training the GAN<\/h2>\n<p>\n        The training process of GAN involves alternating learning between the Generator and Discriminator. The code below represents the main loop for training the GAN.\n    <\/p>\n<pre>\n    <code>\n    import numpy as np\n    import matplotlib.pyplot as plt\n\n    def train_gan(num_epochs):\n        for epoch in range(num_epochs):\n            for i, (imgs, _) in enumerate(dataloader):\n                # Real image labels: 1\n                real_labels = torch.ones(imgs.size(0), 1)\n                # Fake image labels: 0\n                fake_labels = torch.zeros(imgs.size(0), 1)\n\n                # Discriminator training\n                optimizer_D.zero_grad()\n                outputs = discriminator(imgs)\n                d_loss_real = criterion(outputs, real_labels)\n                d_loss_real.backward()\n\n                z = torch.randn(imgs.size(0), 100)\n                fake_images = generator(z)\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                d_loss = d_loss_real + d_loss_fake\n\n                # Generator training\n                optimizer_G.zero_grad()\n                outputs = discriminator(fake_images)\n                g_loss = criterion(outputs, real_labels)\n                g_loss.backward()\n                optimizer_G.step()\n\n                if (i % 100 == 0):\n                    print(f'Epoch [{epoch}\/{num_epochs}], Step [{i}\/{len(dataloader)}], d_loss: {d_loss.item()}, g_loss: {g_loss.item()}')\n\n    train_gan(num_epochs=20)\n    <\/code>\n    <\/pre>\n<h2>7. Visualizing Results<\/h2>\n<p>\n        After training the model, you can visualize the generated images. The code below shows the process of saving and visualizing the generated images.\n    <\/p>\n<pre>\n    <code>\n    def plot_generated_images(num_images):\n        z = torch.randn(num_images, 100)\n        generated_images = generator(z).detach().numpy()\n        generated_images = (generated_images + 1) \/ 2  # (-1, 1) -> (0, 1)\n        \n        fig, axes = plt.subplots(1, num_images, figsize=(15, 5))\n        for i in range(num_images):\n            axes[i].imshow(generated_images[i].transpose(1, 2, 0))\n            axes[i].axis('off')\n        plt.show()\n\n    plot_generated_images(10)\n    <\/code>\n    <\/pre>\n<h2>8. Conclusion<\/h2>\n<p>\n        In this article, we explored the basic concepts and implementation process of GAN deep learning using PyTorch. GAN can generate new images, such as artworks, which can be utilized in events like art exhibitions. We expect that GAN technology will continue to evolve, providing various creative possibilities.\n    <\/p>\n<h2>9. Additional Resources<\/h2>\n<p>\n        Below are additional resources on GAN and related topics.\n    <\/p>\n<ul>\n<li><a href=\"https:\/\/arxiv.org\/abs\/1406.2661\">GAN Paper (Goodfellow et al.)<\/a><\/li>\n<li><a href=\"https:\/\/pytorch.org\/tutorials\/beginner\/dcgan_faces_tutorial.html\">PyTorch DCGAN Example<\/a><\/li>\n<li><a href=\"https:\/\/towardsdatascience.com\/generative-adversarial-networks-gans-explained-f7b8d34a5ef4\">Blog Explaining GANs<\/a><\/li>\n<\/ul>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction GAN (Generative Adversarial Network) is a type of generative model where two neural networks interact to generate new data. GANs are primarily used in various fields such as image generation, text generation, and music generation. In this article, we will implement GAN using the PyTorch library and detail the process of generating artwork that &hellip; <a href=\"https:\/\/atmokpo.com\/w\/36365\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;GAN Deep Learning Using PyTorch, Art Exhibition&#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":[113],"tags":[],"class_list":["post-36365","post","type-post","status-publish","format-standard","hentry","category-gan-deep-learning-course"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>GAN Deep Learning Using PyTorch, Art Exhibition - \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\/36365\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"GAN Deep Learning Using PyTorch, Art Exhibition - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"Introduction GAN (Generative Adversarial Network) is a type of generative model where two neural networks interact to generate new data. GANs are primarily used in various fields such as image generation, text generation, and music generation. In this article, we will implement GAN using the PyTorch library and detail the process of generating artwork that &hellip; \ub354 \ubcf4\uae30 &quot;GAN Deep Learning Using PyTorch, Art Exhibition&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/36365\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-01T09:47:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-01T11:00:13+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\/36365\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36365\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"GAN Deep Learning Using PyTorch, Art Exhibition\",\"datePublished\":\"2024-11-01T09:47:51+00:00\",\"dateModified\":\"2024-11-01T11:00:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36365\/\"},\"wordCount\":429,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"GAN deep learning course\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/36365\/\",\"url\":\"https:\/\/atmokpo.com\/w\/36365\/\",\"name\":\"GAN Deep Learning Using PyTorch, Art Exhibition - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-01T09:47:51+00:00\",\"dateModified\":\"2024-11-01T11:00:13+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/36365\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/36365\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/36365\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"GAN Deep Learning Using PyTorch, Art Exhibition\"}]},{\"@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":"GAN Deep Learning Using PyTorch, Art Exhibition - \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\/36365\/","og_locale":"ko_KR","og_type":"article","og_title":"GAN Deep Learning Using PyTorch, Art Exhibition - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"Introduction GAN (Generative Adversarial Network) is a type of generative model where two neural networks interact to generate new data. GANs are primarily used in various fields such as image generation, text generation, and music generation. In this article, we will implement GAN using the PyTorch library and detail the process of generating artwork that &hellip; \ub354 \ubcf4\uae30 \"GAN Deep Learning Using PyTorch, Art Exhibition\"","og_url":"https:\/\/atmokpo.com\/w\/36365\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-01T09:47:51+00:00","article_modified_time":"2024-11-01T11:00:13+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\/36365\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/36365\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"GAN Deep Learning Using PyTorch, Art Exhibition","datePublished":"2024-11-01T09:47:51+00:00","dateModified":"2024-11-01T11:00:13+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/36365\/"},"wordCount":429,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["GAN deep learning course"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/36365\/","url":"https:\/\/atmokpo.com\/w\/36365\/","name":"GAN Deep Learning Using PyTorch, Art Exhibition - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-01T09:47:51+00:00","dateModified":"2024-11-01T11:00:13+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/36365\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/36365\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/36365\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"GAN Deep Learning Using PyTorch, Art Exhibition"}]},{"@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\/36365","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=36365"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/36365\/revisions"}],"predecessor-version":[{"id":36366,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/36365\/revisions\/36366"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=36365"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=36365"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=36365"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}