Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cgan #10

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Cgan #10

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.ipynb_checkpoints
.vscode
data
1 change: 0 additions & 1 deletion 01. Introduction/.gitignore

This file was deleted.

4 changes: 2 additions & 2 deletions 01. Introduction/MNIST_GAN.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"transform = transforms.ToTensor()\n",
"\n",
"# MNIST dataset\n",
"mnist = datasets.MNIST(root='./data/',\n",
"mnist = datasets.MNIST(root='../data/',\n",
" train=True,\n",
" transform=transform,\n",
" download=True,)\n",
Expand Down Expand Up @@ -295,4 +295,4 @@
},
"nbformat": 4,
"nbformat_minor": 1
}
}
2 changes: 1 addition & 1 deletion 02. DCGAN/DCGAN.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
"transform = transforms.ToTensor()\n",
"\n",
"# MNIST dataset\n",
"mnist = datasets.MNIST(root='./data/',\n",
"mnist = datasets.MNIST(root='../data/',\n",
" train=True,\n",
" transform=transform,\n",
" download=True,)\n",
Expand Down
25 changes: 25 additions & 0 deletions 03. Conditional GAN/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Conditional GAN

Gan được ứng dụng vào bài toán sinh số viết tay trong 2 bài trước, [GAN](../01.%20Introduction/README.md) và [DCGAN](../02.%20DCGAN/README.md). Kết quả thu được cũng khá khả quan :smile:

Tuy nhiên có 1 vấn đề nhỏ của ảnh được sinh ra: chúng ta không biết ảnh sinh ra là số gì, chỉ biết rằng đó là số. Vậy làm thế nào để có thể nói cho mô hình biết rằng hãy sinh ra số 1, số 2 đi? Conditional GAN sinh ra để giải quyết vấn đề đó.

## Kiến trúc cGAN

Conditional GAN được giới thiệu ngay sau khi GAN được ra mắt ([bài báo](https://arxiv.org/abs/1411.1784)) với ý tưởng khá đơn giản: nối thêm vector label vào input của cả bộ Generator và Discriminator.

![cGAN](images/cgan.png)

> Kiến trúc cGAN (ảnh lấy từ bài báo gốc)

Cúng không có quá nhiều để nói về mô hình này. Bắt tay triển khai thử thôi :muscle:

## Triển khai và kết quả

Mình sẽ sử dụng lại gần như [toàn bộ code của bài GAN](../01.%20Introduction/MNIST_GAN.ipynb) với 1 chút thay đổi nhỏ:

### Bộ Discriminator

### Bộ Generator

### Kết quả
Loading