rajrathi commited on
Commit
0e62ef3
1 Parent(s): 5fc043b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -35,8 +35,8 @@ def create_digit_samples(digit, n_samples):
35
  digit_images = (digit_images/127.5) -1
36
  return digit_images
37
 
38
- description = "This model is based on the example created here: https://keras.io/examples/generative/conditional_gan/"
39
-
40
  title = "Conditional GAN for MNIST"
41
 
42
  examples = [[1, 10], [3, 5], [5, 15]]
 
35
  digit_images = (digit_images/127.5) -1
36
  return digit_images
37
 
38
+ description = "Keras implementation for Conditional GAN to generate samples for specific digit of MNIST"
39
+ article = "Author:<a href=\"https://huggingface.co/rajrathi\"> Rajeshwar Rathi<\a>; Based on the keras example by <a href=\"https://keras.io/examples/generative/conditional_gan/\">Sayak Paul<\a>"
40
  title = "Conditional GAN for MNIST"
41
 
42
  examples = [[1, 10], [3, 5], [5, 15]]