{"id":29786,"date":"2024-10-28T03:00:02","date_gmt":"2024-10-28T03:00:02","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=29786"},"modified":"2024-11-26T06:51:23","modified_gmt":"2024-11-26T06:51:23","slug":"%ed%8c%8c%ec%9d%b4%ed%86%a0%ec%b9%98%eb%a5%bc-%ed%99%9c%ec%9a%a9%ed%95%9c-gan-%eb%94%a5%eb%9f%ac%eb%8b%9d-ae-%ec%98%a4%ed%86%a0%ec%9d%b8%ec%bd%94%eb%8d%94","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/29786\/","title":{"rendered":"\ud30c\uc774\ud1a0\uce58\ub97c \ud65c\uc6a9\ud55c GAN \ub525\ub7ec\ub2dd, AE &#8211; \uc624\ud1a0\uc778\ucf54\ub354"},"content":{"rendered":"<p><body><\/p>\n<h2>1. GAN(Generative Adversarial Network)<\/h2>\n<p>\n        GAN\uc740 Ian Goodfellow\uac00 2014\ub144\uc5d0 \uc81c\uc548\ud55c \ubaa8\ub378\ub85c, \ub450 \uac1c\uc758 \uc2e0\uacbd\ub9dd\uc778 \uc0dd\uc131\uae30(generator)\uc640 \ud310\ubcc4\uae30(discriminator)\uac00 \uc11c\ub85c \uacbd\uc7c1\ud558\ub294 \uad6c\uc870\uc785\ub2c8\ub2e4. \uc774 \uacbd\uc7c1\uc744 \ud1b5\ud574 \uc0dd\uc131\uae30\ub294 \uc2e4\uc81c\ucc98\ub7fc \ubcf4\uc774\ub294 \ub370\uc774\ud130\ub97c \uc0dd\uc131\ud558\uac8c \ub429\ub2c8\ub2e4.\n    <\/p>\n<h3>1.1 GAN\uc758 \uad6c\uc870<\/h3>\n<p>\n        GAN\uc740 \ub450 \uac1c\uc758 \uc2e0\uacbd\ub9dd\uc73c\ub85c \uad6c\uc131\ub429\ub2c8\ub2e4. \uc0dd\uc131\uae30\ub294 \ub79c\ub364 \ub178\uc774\uc988 \ubca1\ud130\ub97c \uc785\ub825\ubc1b\uc544 \uac00\uc9dc \ub370\uc774\ud130\ub97c \uc0dd\uc131\ud558\uace0, \ud310\ubcc4\uae30\ub294 \uc785\ub825\ubc1b\uc740 \ub370\uc774\ud130\uac00 \uc2e4\uc81c \ub370\uc774\ud130\uc778\uc9c0 \uc0dd\uc131\ub41c \ub370\uc774\ud130\uc778\uc9c0\ub97c \uad6c\ubcc4\ud569\ub2c8\ub2e4. \uc0dd\uc131\uae30\uc640 \ud310\ubcc4\uae30\ub294 \uac01\uac01\uc758 \ubaa9\uc801\uc744 \uac00\uc9c0\uace0 \ud6c8\ub828\ub429\ub2c8\ub2e4.\n    <\/p>\n<h3>1.2 GAN\uc758 \uc190\uc2e4 \ud568\uc218<\/h3>\n<p>\n        GAN\uc758 \uc190\uc2e4 \ud568\uc218\ub294 \uc0dd\uc131\uae30\uc640 \ud310\ubcc4\uae30\uc758 \uc131\ub2a5\uc744 \ud3c9\uac00\ud558\ub294 \ub370 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \uc0dd\uc131\uae30\ub294 \ud310\ubcc4\uae30\ub97c \uc18d\uc774\uae30 \uc704\ud574 \ub178\ub825\ud558\uace0, \ud310\ubcc4\uae30\ub294 \uc774\ub97c \uad6c\ubcc4\ud558\uae30 \uc704\ud574 \ub178\ub825\ud569\ub2c8\ub2e4.<br \/>\n        \\[<br \/>\n        \\text{Loss}_D = &#8211; \\mathbb{E}_{x \\sim p_{data}(x)}[\\log(D(x))] &#8211; \\mathbb{E}_{z \\sim p_z(z)}[\\log(1 &#8211; D(G(z)))]<br \/>\n        \\]<br \/>\n        \\[<br \/>\n        \\text{Loss}_G = &#8211; \\mathbb{E}_{z \\sim p_z(z)}[\\log(D(G(z)))]<br \/>\n        \\]\n    <\/p>\n<h3>1.3 GAN \uc608\uc81c \ucf54\ub4dc<\/h3>\n<p>\ub2e4\uc74c\uc740 PyTorch\ub97c \uc0ac\uc6a9\ud558\uc5ec \uac04\ub2e8\ud55c GAN\uc744 \uad6c\ud604\ud55c \ucf54\ub4dc\uc785\ub2c8\ub2e4:<\/p>\n<pre>\n        <code>\nimport torch\nimport torch.nn as nn\nimport torch.optim as optim\nfrom torchvision import datasets, transforms\n\n# \ud558\uc774\ud37c\ud30c\ub77c\ubbf8\ud130 \uc815\uc758\nlatent_size = 100\nbatch_size = 64\nnum_epochs = 200\nlearning_rate = 0.0002\n\n# \ub370\uc774\ud130\uc14b \ubd88\ub7ec\uc624\uae30\ntransform = transforms.Compose([\n    transforms.ToTensor(),\n    transforms.Normalize((0.5,), (0.5,))\n])\n\ndataset = datasets.MNIST(root='.\/data', train=True, download=True, transform=transform)\ndata_loader = torch.utils.data.DataLoader(dataset, batch_size=batch_size, shuffle=True)\n\n# \uc0dd\uc131\uae30 \uc815\uc758\nclass Generator(nn.Module):\n    def __init__(self):\n        super(Generator, self).__init__()\n        self.model = nn.Sequential(\n            nn.Linear(latent_size, 256),\n            nn.ReLU(),\n            nn.Linear(256, 512),\n            nn.ReLU(),\n            nn.Linear(512, 1024),\n            nn.ReLU(),\n            nn.Linear(1024, 28*28),\n            nn.Tanh()\n        )\n\n    def forward(self, z):\n        return self.model(z).view(-1, 1, 28, 28)\n\n# \ud310\ubcc4\uae30 \uc815\uc758\nclass Discriminator(nn.Module):\n    def __init__(self):\n        super(Discriminator, self).__init__()\n        self.model = nn.Sequential(\n            nn.Linear(28*28, 1024),\n            nn.LeakyReLU(0.2),\n            nn.Linear(1024, 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        return self.model(img.view(-1, 28*28))\n\n# \ubaa8\ub378 \ucd08\uae30\ud654\ngenerator = Generator()\ndiscriminator = Discriminator()\n\n# \uc190\uc2e4 \ud568\uc218 \ubc0f \ucd5c\uc801\ud654\uae30 \uc815\uc758\ncriterion = nn.BCELoss()\noptimizer_G = optim.Adam(generator.parameters(), lr=learning_rate)\noptimizer_D = optim.Adam(discriminator.parameters(), lr=learning_rate)\n\n# \ud559\uc2b5 \uacfc\uc815\nfor epoch in range(num_epochs):\n    for i, (imgs, _) in enumerate(data_loader):\n        # \uc9c4\uc9dc \uc774\ubbf8\uc9c0\uc640 \uac00\uc9dc \uc774\ubbf8\uc9c0 \ub808\uc774\ube14\n        real_imgs = imgs\n        real_labels = torch.ones(imgs.size(0), 1)  # \uc9c4\uc9dc \ub808\uc774\ube14\n        fake_labels = torch.zeros(imgs.size(0), 1)  # \uac00\uc9dc \ub808\uc774\ube14\n\n        # \ud310\ubcc4\uae30 \ud559\uc2b5\n        optimizer_D.zero_grad()\n        outputs = discriminator(real_imgs)\n        d_loss_real = criterion(outputs, real_labels)\n\n        z = torch.randn(imgs.size(0), latent_size)\n        fake_imgs = generator(z)\n        outputs = discriminator(fake_imgs.detach())\n        d_loss_fake = criterion(outputs, fake_labels)\n\n        d_loss = d_loss_real + d_loss_fake\n        d_loss.backward()\n        optimizer_D.step()\n\n        # \uc0dd\uc131\uae30 \ud559\uc2b5\n        optimizer_G.zero_grad()\n        outputs = discriminator(fake_imgs)\n        g_loss = criterion(outputs, real_labels)\n        g_loss.backward()\n        optimizer_G.step()\n\n    print(f\"Epoch [{epoch}\/{num_epochs}], d_loss: {d_loss.item()}, g_loss: {g_loss.item()}\")\n        <\/code>\n    <\/pre>\n<h2>2. \uc624\ud1a0\uc778\ucf54\ub354(Autoencoder)<\/h2>\n<p>\n        \uc624\ud1a0\uc778\ucf54\ub354\ub294 \uc785\ub825 \ub370\uc774\ud130\ub97c \uc555\ucd95\ud558\uace0 \ubcf5\uc6d0\ud558\ub294 \ube44\uc9c0\ub3c4 \ud559\uc2b5 \ubc29\ubc95\uc785\ub2c8\ub2e4. \uc785\ub825\uacfc \ub3d9\uc77c\ud55c \ucd9c\ub825\uc744 \ubaa9\ud45c\ub85c \ud558\uba70, \ud2b9\uc131\uc744 \ud559\uc2b5\ud558\ub294 \uacfc\uc815\uc744 \ud1b5\ud574 \ub370\uc774\ud130\ub97c \uc555\ucd95\ud569\ub2c8\ub2e4.\n    <\/p>\n<h3>2.1 \uc624\ud1a0\uc778\ucf54\ub354\uc758 \uad6c\uc870<\/h3>\n<p>\n        \uc624\ud1a0\uc778\ucf54\ub354\ub294 \uc778\ucf54\ub354\uc640 \ub514\ucf54\ub354 \ub450 \ubd80\ubd84\uc73c\ub85c \ub098\ub269\ub2c8\ub2e4. \uc778\ucf54\ub354\ub294 \uc785\ub825\uc744 \uc800\ucc28\uc6d0 \uc7a0\uc7ac \ud45c\ud604(latent representation)\uc73c\ub85c \ubcc0\ud658\ud558\uba70, \ub514\ucf54\ub354\ub294 \uc774 \uc7a0\uc7ac \ud45c\ud604\uc744 \uc0ac\uc6a9\ud558\uc5ec \uc6d0\ub798\uc758 \uc785\ub825\uc744 \ubcf5\uc6d0\ud569\ub2c8\ub2e4.\n    <\/p>\n<h3>2.2 \uc624\ud1a0\uc778\ucf54\ub354\uc758 \uc190\uc2e4 \ud568\uc218<\/h3>\n<p>\uc624\ud1a0\uc778\ucf54\ub354\ub294 \uc8fc\ub85c Mean Squared Error(MSE)\ub97c \uc190\uc2e4 \ud568\uc218\ub85c \uc0ac\uc6a9\ud558\uc5ec \uc785\ub825\uacfc \ucd9c\ub825 \uac04\uc758 \ucc28\uc774\ub97c \ucd5c\uc18c\ud654\ud569\ub2c8\ub2e4.<br \/>\n        \\[<br \/>\n        \\text{Loss} = \\frac{1}{N} \\sum_{i=1}^N (x_i &#8211; \\hat{x}_i)^2<br \/>\n        \\]\n    <\/p>\n<h3>2.3 \uc624\ud1a0\uc778\ucf54\ub354 \uc608\uc81c \ucf54\ub4dc<\/h3>\n<p>\ub2e4\uc74c\uc740 PyTorch\ub97c \uc0ac\uc6a9\ud55c \uac04\ub2e8\ud55c \uc624\ud1a0\uc778\ucf54\ub354\uc758 \uad6c\ud604 \ucf54\ub4dc\uc785\ub2c8\ub2e4:<\/p>\n<pre>\n        <code>\nimport torch\nimport torch.nn as nn\nimport torch.optim as optim\nfrom torchvision import datasets, transforms\n\n# \ud558\uc774\ud37c\ud30c\ub77c\ubbf8\ud130 \uc815\uc758\nbatch_size = 64\nnum_epochs = 20\nlearning_rate = 0.001\n\n# \ub370\uc774\ud130\uc14b \ubd88\ub7ec\uc624\uae30\ntransform = transforms.Compose([\n    transforms.ToTensor(),\n    transforms.Normalize((0.5,), (0.5,))\n])\n\ndataset = datasets.MNIST(root='.\/data', train=True, download=True, transform=transform)\ndata_loader = torch.utils.data.DataLoader(dataset, batch_size=batch_size, shuffle=True)\n\n# \uc624\ud1a0\uc778\ucf54\ub354 \uc815\uc758\nclass Autoencoder(nn.Module):\n    def __init__(self):\n        super(Autoencoder, self).__init__()\n        self.encoder = nn.Sequential(\n            nn.Linear(28*28, 128),\n            nn.ReLU(),\n            nn.Linear(128, 64),\n            nn.ReLU()\n        )\n        self.decoder = nn.Sequential(\n            nn.Linear(64, 128),\n            nn.ReLU(),\n            nn.Linear(128, 28*28),\n            nn.Sigmoid()\n        )\n\n    def forward(self, x):\n        x = x.view(-1, 28*28)\n        encoded = self.encoder(x)\n        reconstructed = self.decoder(encoded)\n        return reconstructed.view(-1, 1, 28, 28)\n\n# \ubaa8\ub378 \ucd08\uae30\ud654\nautoencoder = Autoencoder()\n\n# \uc190\uc2e4 \ud568\uc218 \ubc0f \ucd5c\uc801\ud654\uae30 \uc815\uc758\ncriterion = nn.MSELoss()\noptimizer = optim.Adam(autoencoder.parameters(), lr=learning_rate)\n\n# \ud559\uc2b5 \uacfc\uc815\nfor epoch in range(num_epochs):\n    for imgs, _ in data_loader:\n        optimizer.zero_grad()\n        outputs = autoencoder(imgs)\n        loss = criterion(outputs, imgs)\n        loss.backward()\n        optimizer.step()\n\n    print(f\"Epoch [{epoch}\/{num_epochs}], Loss: {loss.item()}\")\n        <\/code>\n    <\/pre>\n<h2>3. \uacb0\ub860<\/h2>\n<p>\n        GAN\uacfc \uc624\ud1a0\uc778\ucf54\ub354\ub294 \uc774\ubbf8\uc9c0 \uc0dd\uc131 \ubc0f \ub370\uc774\ud130 \ud45c\ud604 \ubc0f \uc555\ucd95\uc744 \uc704\ud55c \uac15\ub825\ud55c \ub525\ub7ec\ub2dd \uae30\ubc95\uc785\ub2c8\ub2e4. \uac01\uac01\uc758 \uad6c\uc870\uc640 \ud559\uc2b5 \ubc29\ubc95\uc744 \uc774\ud574\ud558\uace0 \uc2e4\uc2b5\ud568\uc73c\ub85c\uc368, \ub354 \ub192\uc740 \uc218\uc900\uc758 \ub525\ub7ec\ub2dd \uc9c0\uc2dd\uc744 \uc313\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<br \/>\n        \uc774\ub7ec\ud55c \ubaa8\ub378\ub4e4\uc740 \ub2e4\uc591\ud55c \uc751\uc6a9 \ubd84\uc57c\uc5d0 \ud65c\uc6a9\ub420 \uc218 \uc788\uc73c\uba70, \ucee4\uc2a4\ud130\ub9c8\uc774\uc9d5\ub41c \uc544\ud0a4\ud14d\ucc98\ub85c \ub354 \ub098\uc740 \uacb0\uacfc\ub97c \ub3c4\ucd9c\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>1. GAN(Generative Adversarial Network) GAN\uc740 Ian Goodfellow\uac00 2014\ub144\uc5d0 \uc81c\uc548\ud55c \ubaa8\ub378\ub85c, \ub450 \uac1c\uc758 \uc2e0\uacbd\ub9dd\uc778 \uc0dd\uc131\uae30(generator)\uc640 \ud310\ubcc4\uae30(discriminator)\uac00 \uc11c\ub85c \uacbd\uc7c1\ud558\ub294 \uad6c\uc870\uc785\ub2c8\ub2e4. \uc774 \uacbd\uc7c1\uc744 \ud1b5\ud574 \uc0dd\uc131\uae30\ub294 \uc2e4\uc81c\ucc98\ub7fc \ubcf4\uc774\ub294 \ub370\uc774\ud130\ub97c \uc0dd\uc131\ud558\uac8c \ub429\ub2c8\ub2e4. 1.1 GAN\uc758 \uad6c\uc870 GAN\uc740 \ub450 \uac1c\uc758 \uc2e0\uacbd\ub9dd\uc73c\ub85c \uad6c\uc131\ub429\ub2c8\ub2e4. \uc0dd\uc131\uae30\ub294 \ub79c\ub364 \ub178\uc774\uc988 \ubca1\ud130\ub97c \uc785\ub825\ubc1b\uc544 \uac00\uc9dc \ub370\uc774\ud130\ub97c \uc0dd\uc131\ud558\uace0, \ud310\ubcc4\uae30\ub294 \uc785\ub825\ubc1b\uc740 \ub370\uc774\ud130\uac00 \uc2e4\uc81c \ub370\uc774\ud130\uc778\uc9c0 \uc0dd\uc131\ub41c \ub370\uc774\ud130\uc778\uc9c0\ub97c \uad6c\ubcc4\ud569\ub2c8\ub2e4. \uc0dd\uc131\uae30\uc640 \ud310\ubcc4\uae30\ub294 \uac01\uac01\uc758 \ubaa9\uc801\uc744 &hellip; <a href=\"https:\/\/atmokpo.com\/w\/29786\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;\ud30c\uc774\ud1a0\uce58\ub97c \ud65c\uc6a9\ud55c GAN \ub525\ub7ec\ub2dd, AE &#8211; \uc624\ud1a0\uc778\ucf54\ub354&#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":[32],"tags":[],"class_list":["post-29786","post","type-post","status-publish","format-standard","hentry","category-gan--"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>\ud30c\uc774\ud1a0\uce58\ub97c \ud65c\uc6a9\ud55c GAN \ub525\ub7ec\ub2dd, AE - \uc624\ud1a0\uc778\ucf54\ub354 - \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\/29786\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\ud30c\uc774\ud1a0\uce58\ub97c \ud65c\uc6a9\ud55c GAN \ub525\ub7ec\ub2dd, AE - \uc624\ud1a0\uc778\ucf54\ub354 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"1. GAN(Generative Adversarial Network) GAN\uc740 Ian Goodfellow\uac00 2014\ub144\uc5d0 \uc81c\uc548\ud55c \ubaa8\ub378\ub85c, \ub450 \uac1c\uc758 \uc2e0\uacbd\ub9dd\uc778 \uc0dd\uc131\uae30(generator)\uc640 \ud310\ubcc4\uae30(discriminator)\uac00 \uc11c\ub85c \uacbd\uc7c1\ud558\ub294 \uad6c\uc870\uc785\ub2c8\ub2e4. \uc774 \uacbd\uc7c1\uc744 \ud1b5\ud574 \uc0dd\uc131\uae30\ub294 \uc2e4\uc81c\ucc98\ub7fc \ubcf4\uc774\ub294 \ub370\uc774\ud130\ub97c \uc0dd\uc131\ud558\uac8c \ub429\ub2c8\ub2e4. 1.1 GAN\uc758 \uad6c\uc870 GAN\uc740 \ub450 \uac1c\uc758 \uc2e0\uacbd\ub9dd\uc73c\ub85c \uad6c\uc131\ub429\ub2c8\ub2e4. \uc0dd\uc131\uae30\ub294 \ub79c\ub364 \ub178\uc774\uc988 \ubca1\ud130\ub97c \uc785\ub825\ubc1b\uc544 \uac00\uc9dc \ub370\uc774\ud130\ub97c \uc0dd\uc131\ud558\uace0, \ud310\ubcc4\uae30\ub294 \uc785\ub825\ubc1b\uc740 \ub370\uc774\ud130\uac00 \uc2e4\uc81c \ub370\uc774\ud130\uc778\uc9c0 \uc0dd\uc131\ub41c \ub370\uc774\ud130\uc778\uc9c0\ub97c \uad6c\ubcc4\ud569\ub2c8\ub2e4. \uc0dd\uc131\uae30\uc640 \ud310\ubcc4\uae30\ub294 \uac01\uac01\uc758 \ubaa9\uc801\uc744 &hellip; \ub354 \ubcf4\uae30 &quot;\ud30c\uc774\ud1a0\uce58\ub97c \ud65c\uc6a9\ud55c GAN \ub525\ub7ec\ub2dd, AE &#8211; \uc624\ud1a0\uc778\ucf54\ub354&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/29786\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-28T03:00:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T06:51:23+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=\"3\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/29786\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/29786\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"\ud30c\uc774\ud1a0\uce58\ub97c \ud65c\uc6a9\ud55c GAN \ub525\ub7ec\ub2dd, AE &#8211; \uc624\ud1a0\uc778\ucf54\ub354\",\"datePublished\":\"2024-10-28T03:00:02+00:00\",\"dateModified\":\"2024-11-26T06:51:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/29786\/\"},\"wordCount\":83,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"GAN \ub525\ub7ec\ub2dd \uac15\uc88c\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/29786\/\",\"url\":\"https:\/\/atmokpo.com\/w\/29786\/\",\"name\":\"\ud30c\uc774\ud1a0\uce58\ub97c \ud65c\uc6a9\ud55c GAN \ub525\ub7ec\ub2dd, AE - \uc624\ud1a0\uc778\ucf54\ub354 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-10-28T03:00:02+00:00\",\"dateModified\":\"2024-11-26T06:51:23+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/29786\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/29786\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/29786\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\ud30c\uc774\ud1a0\uce58\ub97c \ud65c\uc6a9\ud55c GAN \ub525\ub7ec\ub2dd, AE &#8211; \uc624\ud1a0\uc778\ucf54\ub354\"}]},{\"@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":"\ud30c\uc774\ud1a0\uce58\ub97c \ud65c\uc6a9\ud55c GAN \ub525\ub7ec\ub2dd, AE - \uc624\ud1a0\uc778\ucf54\ub354 - \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\/29786\/","og_locale":"ko_KR","og_type":"article","og_title":"\ud30c\uc774\ud1a0\uce58\ub97c \ud65c\uc6a9\ud55c GAN \ub525\ub7ec\ub2dd, AE - \uc624\ud1a0\uc778\ucf54\ub354 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"1. GAN(Generative Adversarial Network) GAN\uc740 Ian Goodfellow\uac00 2014\ub144\uc5d0 \uc81c\uc548\ud55c \ubaa8\ub378\ub85c, \ub450 \uac1c\uc758 \uc2e0\uacbd\ub9dd\uc778 \uc0dd\uc131\uae30(generator)\uc640 \ud310\ubcc4\uae30(discriminator)\uac00 \uc11c\ub85c \uacbd\uc7c1\ud558\ub294 \uad6c\uc870\uc785\ub2c8\ub2e4. \uc774 \uacbd\uc7c1\uc744 \ud1b5\ud574 \uc0dd\uc131\uae30\ub294 \uc2e4\uc81c\ucc98\ub7fc \ubcf4\uc774\ub294 \ub370\uc774\ud130\ub97c \uc0dd\uc131\ud558\uac8c \ub429\ub2c8\ub2e4. 1.1 GAN\uc758 \uad6c\uc870 GAN\uc740 \ub450 \uac1c\uc758 \uc2e0\uacbd\ub9dd\uc73c\ub85c \uad6c\uc131\ub429\ub2c8\ub2e4. \uc0dd\uc131\uae30\ub294 \ub79c\ub364 \ub178\uc774\uc988 \ubca1\ud130\ub97c \uc785\ub825\ubc1b\uc544 \uac00\uc9dc \ub370\uc774\ud130\ub97c \uc0dd\uc131\ud558\uace0, \ud310\ubcc4\uae30\ub294 \uc785\ub825\ubc1b\uc740 \ub370\uc774\ud130\uac00 \uc2e4\uc81c \ub370\uc774\ud130\uc778\uc9c0 \uc0dd\uc131\ub41c \ub370\uc774\ud130\uc778\uc9c0\ub97c \uad6c\ubcc4\ud569\ub2c8\ub2e4. \uc0dd\uc131\uae30\uc640 \ud310\ubcc4\uae30\ub294 \uac01\uac01\uc758 \ubaa9\uc801\uc744 &hellip; \ub354 \ubcf4\uae30 \"\ud30c\uc774\ud1a0\uce58\ub97c \ud65c\uc6a9\ud55c GAN \ub525\ub7ec\ub2dd, AE &#8211; \uc624\ud1a0\uc778\ucf54\ub354\"","og_url":"https:\/\/atmokpo.com\/w\/29786\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-10-28T03:00:02+00:00","article_modified_time":"2024-11-26T06:51:23+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":"3\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/29786\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/29786\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"\ud30c\uc774\ud1a0\uce58\ub97c \ud65c\uc6a9\ud55c GAN \ub525\ub7ec\ub2dd, AE &#8211; \uc624\ud1a0\uc778\ucf54\ub354","datePublished":"2024-10-28T03:00:02+00:00","dateModified":"2024-11-26T06:51:23+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/29786\/"},"wordCount":83,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["GAN \ub525\ub7ec\ub2dd \uac15\uc88c"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/29786\/","url":"https:\/\/atmokpo.com\/w\/29786\/","name":"\ud30c\uc774\ud1a0\uce58\ub97c \ud65c\uc6a9\ud55c GAN \ub525\ub7ec\ub2dd, AE - \uc624\ud1a0\uc778\ucf54\ub354 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-10-28T03:00:02+00:00","dateModified":"2024-11-26T06:51:23+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/29786\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/29786\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/29786\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"\ud30c\uc774\ud1a0\uce58\ub97c \ud65c\uc6a9\ud55c GAN \ub525\ub7ec\ub2dd, AE &#8211; \uc624\ud1a0\uc778\ucf54\ub354"}]},{"@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":[{"id":29045,"url":"https:\/\/atmokpo.com\/w\/29045\/","url_meta":{"origin":29786,"position":0},"title":"\uba38\uc2e0\ub7ec\ub2dd \ubc0f \ub525\ub7ec\ub2dd \uc54c\uace0\ub9ac\uc998 \ud2b8\ub808\uc774\ub529, \ubcc0\ubd84 \uc624\ud1a0\uc778\ucf54\ub354\ub85c \uc0dd\uc131 \ubaa8\ub378\ub9c1","author":"root","date":"2024\ub144 10\uc6d4 27\uc77c","format":false,"excerpt":"\ubcf8 \ube14\ub85c\uadf8 \ud3ec\uc2a4\ud2b8\uc5d0\uc11c\ub294 \uba38\uc2e0\ub7ec\ub2dd \ubc0f \ub525\ub7ec\ub2dd \uae30\uc220\uc744 \uc774\uc6a9\ud558\uc5ec \uc790\ub3d9 \ub9e4\ub9e4 \uc2dc\uc2a4\ud15c\uc744 \uad6c\ucd95\ud558\ub294 \ubc29\ubc95 \uc911 \ubcc0\ubd84 \uc624\ud1a0\uc778\ucf54\ub354(Variational Autoencoder, VAE) \uae30\ubc18\uc758 \uc0dd\uc131 \ubaa8\ub378\ub9c1\uc744 \uc911\uc810\uc801\uc73c\ub85c \ub2e4\ub8e8\uaca0\uc2b5\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\ub294 \ud000\ud2b8 \ub9e4\ub9e4\ub97c \uc6d0\ud558\ub294 \ud22c\uc790\uc790, \uac1c\ubc1c\uc790 \ubc0f \ub370\uc774\ud130 \uacfc\ud559\uc790 \ubaa8\ub450\uc5d0\uac8c \uc720\uc6a9\ud560 \uac83\uc785\ub2c8\ub2e4. 1. \uba38\uc2e0\ub7ec\ub2dd\uacfc \ub525\ub7ec\ub2dd\uc758 \uae30\ucd08 \uba38\uc2e0\ub7ec\ub2dd(Machine Learning)\uc740 \ub370\uc774\ud130\ub85c\ubd80\ud130 \ud559\uc2b5\ud558\uc5ec \ud328\ud134\uc744 \uc778\uc2dd\ud558\uace0 \uc608\uce21\uc744 \uc218\ud589\ud558\ub294 \uc54c\uace0\ub9ac\uc998\uc744 \uac1c\ubc1c\ud558\ub294\u2026","rel":"","context":"&quot;\ub525\ub7ec\ub2dd \uba38\uc2e0\ub7ec\ub2dd \uc790\ub3d9 \ud2b8\ub808\uc774\ub529&quot;\uc5d0\uc11c","block_context":{"text":"\ub525\ub7ec\ub2dd \uba38\uc2e0\ub7ec\ub2dd \uc790\ub3d9 \ud2b8\ub808\uc774\ub529","link":"https:\/\/atmokpo.com\/w\/category\/%eb%94%a5%eb%9f%ac%eb%8b%9d-%eb%a8%b8%ec%8b%a0%eb%9f%ac%eb%8b%9d-%ec%9e%90%eb%8f%99-%ed%8a%b8%eb%a0%88%ec%9d%b4%eb%94%a9\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":30000,"url":"https:\/\/atmokpo.com\/w\/30000\/","url_meta":{"origin":29786,"position":1},"title":"\ub525\ub7ec\ub2dd \ud30c\uc774\ud1a0\uce58 \uac15\uc88c, \uacf5\uac04 \ud53c\ub77c\ubbf8\ub4dc \ud480\ub9c1","author":"root","date":"2024\ub144 10\uc6d4 28\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: [\ub0a0\uc9dc] 1. \uacf5\uac04 \ud53c\ub77c\ubbf8\ub4dc \ud480\ub9c1(SPP)\uc774\ub780? \uacf5\uac04 \ud53c\ub77c\ubbf8\ub4dc \ud480\ub9c1(SPP, Spatial Pyramid Pooling)\uc740 \uc774\ubbf8\uc9c0 \ubd84\ub958\uc640 \uac19\uc740 \ub2e4\uc591\ud55c \ube44\uc804 \ud0dc\uc2a4\ud06c\uc758 \ubaa8\ub378\uc5d0\uc11c \uc0ac\uc6a9\ub418\ub294 \uae30\ubc95\uc785\ub2c8\ub2e4. \uc77c\ubc18\uc801\uc778 \ud569\uc131\uacf1 \uc2e0\uacbd\ub9dd(CNN)\uc740 \uace0\uc815\ub41c \ud06c\uae30\uc758 \uc785\ub825\uc744 \ud544\uc694\ub85c \ud558\uc9c0\ub9cc, SPP\ub294 \ubcc0\ub3d9\ud558\ub294 \ud06c\uae30\uc758 \uc774\ubbf8\uc9c0\ub97c \uc785\ub825\uc73c\ub85c \ubc1b\uc744 \uc218 \uc788\ub294 \ud2b9\uc131\uc744 \uac00\uc9c0\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub294 SPP\uac00 \uc785\ub825 \uc774\ubbf8\uc9c0\uc758 \ud06c\uae30\ub97c \uc5ec\ub7ec \uacb9\uc73c\ub85c \ub098\ub204\ub294\u2026","rel":"","context":"&quot;\ud30c\uc774\ud1a0\uce58 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ud30c\uc774\ud1a0\uce58 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ed%8c%8c%ec%9d%b4%ed%86%a0%ec%b9%98-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":38798,"url":"https:\/\/atmokpo.com\/w\/38798\/","url_meta":{"origin":29786,"position":2},"title":"OpenCV \uac15\uc88c, PyTorch \ubaa8\ub378\uc744 OpenCV\ub85c \ub85c\ub4dc\ud558\uc5ec \uc2e4\ud589\ud558\uae30","author":"root","date":"2024\ub144 11\uc6d4 02\uc77c","format":false,"excerpt":"\uc800\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: 2024\ub144 11\uc6d4 26\uc77c 1. \uc11c\ub860 OpenCV(Open Source Computer Vision Library)\ub294 \ucef4\ud4e8\ud130 \ube44\uc804 \ubc0f \uba38\uc2e0\ub7ec\ub2dd\uc744 \uc704\ud55c \ub77c\uc774\ube0c\ub7ec\ub9ac\ub85c, \ub2e4\uc591\ud55c \uc774\ubbf8\uc9c0 \ubc0f \ube44\ub514\uc624 \ucc98\ub9ac \uae30\uc220\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. PyTorch\ub294 \uba38\uc2e0\ub7ec\ub2dd \ub77c\uc774\ube0c\ub7ec\ub9ac\ub85c, \ud2b9\ud788 \ub525\ub7ec\ub2dd \ubaa8\ub378\uc758 \uac1c\ubc1c\uacfc \ud559\uc2b5\uc5d0 \ub9ce\uc774 \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\uc5d0\uc11c\ub294 PyTorch\ub85c \ud559\uc2b5\ud55c \ubaa8\ub378\uc744 OpenCV\ub97c \ud1b5\ud574 \ub85c\ub4dc\ud558\uc5ec \uc2e4\uc2dc\uac04\uc73c\ub85c \uc2e4\ud589\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud574 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. 2.\u2026","rel":"","context":"&quot;OpenCV&quot;\uc5d0\uc11c","block_context":{"text":"OpenCV","link":"https:\/\/atmokpo.com\/w\/category\/opencv\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":30092,"url":"https:\/\/atmokpo.com\/w\/30092\/","url_meta":{"origin":29786,"position":3},"title":"\ub525\ub7ec\ub2dd \ud30c\uc774\ud1a0\uce58 \uac15\uc88c, \uc790\uc5f0\uc5b4 \ucc98\ub9ac\ub97c \uc704\ud55c \uc784\ubca0\ub529","author":"root","date":"2024\ub144 10\uc6d4 28\uc77c","format":false,"excerpt":"\uc790\uc5f0\uc5b4 \ucc98\ub9ac(Natural Language Processing, NLP)\ub294 \uc0ac\uc6a9\uc790\uac00 \uc758\ub3c4\ud55c \ubc14\ub97c \uc774\ud574\ud558\uace0, \ubb38\ub9e5\uc5d0 \ub9de\ub294 \uc751\ub2f5\uc744 \uc0dd\uc131\ud558\uba70, \uc5ec\ub7ec \uc5b8\uc5b4\uc801 \uc694\uc18c\ub97c \ubd84\uc11d\ud558\ub294 \ubc29\ubc95\uc785\ub2c8\ub2e4. \uc774 \uacfc\uc815\uc5d0\uc11c \uc911\uc694\ud55c \uae30\uc220 \uc911 \ud558\ub098\uac00 \uc784\ubca0\ub529(Embedding)\uc785\ub2c8\ub2e4. \uc784\ubca0\ub529\uc740 \ub2e8\uc5b4\ub97c \ubca1\ud130 \uacf5\uac04\uc5d0 \ub9e4\ud551\ud558\uc5ec \uc758\ubbf8\uc801 \uad00\uacc4\ub97c \ub354 \uc218\uce58\uc801\uc73c\ub85c \ud45c\ud604\ud560 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc90d\ub2c8\ub2e4. \uc624\ub298\uc740 \ud30c\uc774\ud1a0\uce58\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc790\uc5f0\uc5b4 \ucc98\ub9ac\ub97c \uc704\ud55c \ub2e8\uc5b4 \uc784\ubca0\ub529\uc744 \uad6c\ud604\ud574 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 1. \uc784\ubca0\ub529\uc774\ub780?\u2026","rel":"","context":"&quot;\ud30c\uc774\ud1a0\uce58 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\ud30c\uc774\ud1a0\uce58 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ed%8c%8c%ec%9d%b4%ed%86%a0%ec%b9%98-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":29359,"url":"https:\/\/atmokpo.com\/w\/29359\/","url_meta":{"origin":29786,"position":4},"title":"\uba38\uc2e0\ub7ec\ub2dd \ubc0f \ub525\ub7ec\ub2dd \uc54c\uace0\ub9ac\uc998 \ud2b8\ub808\uc774\ub529, \ud14d\uc2a4\ud2b8 \ub370\uc774\ud130\ub97c \uc704\ud55c RNN","author":"root","date":"2024\ub144 10\uc6d4 27\uc77c","format":false,"excerpt":"\uc800\uc790: \uc870\uad11\ud615 \ub0a0\uc9dc: [\ub0a0\uc9dc] \ubaa9\ucc28 1. \uc11c\ub860 2. \uba38\uc2e0\ub7ec\ub2dd \ubc0f \ub525\ub7ec\ub2dd \uac1c\uc694 3. RNN(\uc21c\ud658 \uc2e0\uacbd\ub9dd) \uc18c\uac1c 4. \ub370\uc774\ud130 \uc804\ucc98\ub9ac 5. \ubaa8\ub378 \ud6c8\ub828 6. \ubc31\ud14c\uc2a4\ud305 7. \uc790\ub3d9\ub9e4\ub9e4 \uc804\ub7b5 \ubc30\ud3ec 8. \uacb0\ub860 1. \uc11c\ub860 \ud604\ub300 \uae08\uc735 \uc2dc\uc7a5\uc5d0\uc11c\ub294 \ub370\uc774\ud130\uc758 \uc591\uc774 \ud3ed\ubc1c\uc801\uc73c\ub85c \uc99d\uac00\ud558\uba74\uc11c \uc804\ud1b5\uc801\uc778 \ud2b8\ub808\uc774\ub529 \ubc29\ubc95\uc744 \ub118\uc5b4\uc11c\ub294 \uace0\uae09 \uc54c\uace0\ub9ac\uc998\uc774 \ud544\uc694\ud574\uc84c\uc2b5\ub2c8\ub2e4. \ud2b9\ud788 \ub274\uc2a4 \uae30\uc0ac, \uc18c\uc15c\u2026","rel":"","context":"&quot;\ub525\ub7ec\ub2dd \uba38\uc2e0\ub7ec\ub2dd \uc790\ub3d9 \ud2b8\ub808\uc774\ub529&quot;\uc5d0\uc11c","block_context":{"text":"\ub525\ub7ec\ub2dd \uba38\uc2e0\ub7ec\ub2dd \uc790\ub3d9 \ud2b8\ub808\uc774\ub529","link":"https:\/\/atmokpo.com\/w\/category\/%eb%94%a5%eb%9f%ac%eb%8b%9d-%eb%a8%b8%ec%8b%a0%eb%9f%ac%eb%8b%9d-%ec%9e%90%eb%8f%99-%ed%8a%b8%eb%a0%88%ec%9d%b4%eb%94%a9\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":28208,"url":"https:\/\/atmokpo.com\/w\/28208\/","url_meta":{"origin":29786,"position":5},"title":"\uc2a4\uc704\ud504\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c, \uc18c\uc218 \uad6c\ud558\uae30","author":"root","date":"2024\ub144 10\uc6d4 27\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 | \ub0a0\uc9dc: [\uc791\uc131\uc77c\uc790] \uc11c\ub860 \ud504\ub85c\uadf8\ub798\ubc0d \uc5b8\uc5b4 \uc2a4\uc704\ud504\ud2b8(Swift)\ub294 macOS \ubc0f iOS \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc5d0 \ub110\ub9ac \uc0ac\uc6a9\ub429\ub2c8\ub2e4. \ucde8\uc5c5\uc744 \uc704\ud55c \uc54c\uace0\ub9ac\uc998 \uc2dc\ud5d8\uc5d0\uc11c \uc18c\uc218(prime number)\ub97c \ucc3e\ub294 \ubb38\uc81c\ub294 \uc790\uc8fc \ucd9c\uc81c\ub418\uba70, \uadf8 \ud574\uacb0 \ubc29\ubc95\uc5d0 \ub300\ud55c \ucda9\ubd84\ud55c \uc774\ud574\uc640 \uc2e4\uc2b5\uc774 \ud544\uc694\ud569\ub2c8\ub2e4. \uc774 \uae00\uc5d0\uc11c\ub294 \uc18c\uc218\ub97c \ud310\ubcc4\ud558\ub294 \uc54c\uace0\ub9ac\uc998 \ubb38\uc81c\ub97c \uc608\uc2dc\ub85c \ub4e4\uace0, \uadf8 \ud574\uacb0 \uacfc\uc815\uc744 \ub2e8\uacc4\ubcc4\ub85c \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. \ubb38\uc81c \uc124\uba85 \ubb38\uc81c:\u2026","rel":"","context":"&quot;\uc2a4\uc704\ud504\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c&quot;\uc5d0\uc11c","block_context":{"text":"\uc2a4\uc704\ud504\ud2b8 \ucf54\ub529\ud14c\uc2a4\ud2b8 \uac15\uc88c","link":"https:\/\/atmokpo.com\/w\/category\/%ec%8a%a4%ec%9c%84%ed%94%84%ed%8a%b8-%ec%bd%94%eb%94%a9%ed%85%8c%ec%8a%a4%ed%8a%b8-%ea%b0%95%ec%a2%8c\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/29786","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=29786"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/29786\/revisions"}],"predecessor-version":[{"id":29787,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/29786\/revisions\/29787"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=29786"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=29786"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=29786"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}