IMvision12
commited on
Commit
•
4c6e522
1
Parent(s):
16329a2
Update README.md
Browse files
README.md
CHANGED
@@ -4,21 +4,13 @@ tags:
|
|
4 |
- GAN
|
5 |
---
|
6 |
|
7 |
-
##
|
8 |
|
9 |
-
|
10 |
|
|
|
11 |
## Intended uses & limitations
|
12 |
|
13 |
-
More information needed
|
14 |
-
|
15 |
-
## Training and evaluation data
|
16 |
-
|
17 |
-
More information needed
|
18 |
-
|
19 |
-
## Training Metrics
|
20 |
-
Model history needed
|
21 |
-
## Model Plot
|
22 |
|
23 |
<details>
|
24 |
<summary>View Model Plot</summary>
|
|
|
4 |
- GAN
|
5 |
---
|
6 |
|
7 |
+
## Wasserstein GAN (WGAN) with Gradient Penalty (GP)
|
8 |
|
9 |
+
The original Wasserstein GAN leverages the Wasserstein distance to produce a value function that has better theoretical properties than the value function used in the original GAN paper. WGAN requires that the discriminator (aka the critic) lie within the space of 1-Lipschitz functions. The authors proposed the idea of weight clipping to achieve this constraint. Though weight clipping works, it can be a problematic way to enforce 1-Lipschitz constraint and can cause undesirable behavior, e.g. a very deep WGAN discriminator (critic) often fails to converge.
|
10 |
|
11 |
+
The WGAN-GP method proposes an alternative to weight clipping to ensure smooth training. Instead of clipping the weights, the authors proposed a "gradient penalty" by adding a loss term that keeps the L2 norm of the discriminator gradients close to 1.
|
12 |
## Intended uses & limitations
|
13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
|
15 |
<details>
|
16 |
<summary>View Model Plot</summary>
|