making faces conditional generation of faces using gans
play

Making Faces: Conditional generation of faces using GANs via - PowerPoint PPT Presentation

Making Faces: Conditional generation of faces using GANs via Keras+Tensorflow SOPHIE SEARCY All materials at soph.info/odsc2019 Who am I? All materials at soph.info/odsc2019 Who am I? u Sophie Searcy u Curriculum development lead and Data


  1. Making Faces: Conditional generation of faces using GANs via Keras+Tensorflow SOPHIE SEARCY All materials at soph.info/odsc2019

  2. Who am I? All materials at soph.info/odsc2019

  3. Who am I? u Sophie Searcy u Curriculum development lead and Data Science Instructor at Metis u Background: robotics, computational psychology u Current focus: Deep Learning and Data Science Ethics u Write and lead free workshops with t4tech All materials at soph.info/odsc2019

  4. Who am I? u Metis thisismetis.com u Only accredited Data Science Bootcamp u Students changing careers into Data Science u Cohorts in Seattle, Chicago, San Francisco, and New York City Mike Galvin Corporate Training u u Skill up your current team u Data Literacy, Big Data, Advanced Deep Learning topics u In-house Bootcamp-style training. Kerstin Frailey All materials at soph.info/odsc2019

  5. Signposting All materials at soph.info/odsc2019

  6. Who is this for Someone who u Understands and can explain the fundamentals of modern Deep Learning (there will be a review) u BackProp u Stochastic Gradient Descent u Common loss and activation functions u Has built models using a recent Deep Learning package (PyTorch, Theano, Keras, etc.) All materials at soph.info/odsc2019

  7. What we’ll cover Students should be able to: u Understand and explain the important components of Generative Adversarial Networks u Use provided boilerplate code and adapt it for new purposes u State of The Art techniques in GANs: u Students will be exposed to a few important, recent developments. u Students will have the building blocks needed to independently explore new techniques. All materials at soph.info/odsc2019

  8. (rough) Agenda u Hour 1: Slides u Hour 2: Neural Net Theory notebook u Hour 3: GAN demo u Less instructional u Will provide hands-on help and take live-coding requests 😭 u Workshop designed to be run on Google Colab for free. u All code distributed through GitHub and Colab. u All results acquired from Colab All materials at soph.info/odsc2019

  9. Deep Learning Review All materials at soph.info/odsc2019

  10. What makes deep Learning special? Typical Machine Learning Data Feature engineering, Tuned by hand, Transformations feature extraction parameter search Optimized wrt Model Linear model, SVM, RF, etc. objective function Output All materials at soph.info/odsc2019

  11. What makes deep Learning special? Deep Learning Data Transformations Optimized wrt Deep Learning model objective function Model Output All materials at soph.info/odsc2019

  12. Essential parts: Differentiable functions & 𝑦 + 𝑐 " u β„Ž " = 𝑔 𝑋 " & β„Ž " + 𝑐 * u β„Ž * = 𝑔 𝑋 * u … & β„Ž - + 𝑐 - ) u 𝑧 = 𝑔(𝑋 - u DL models use these functions to process data in steps from input β†’ output u Traditional application: u Tabular data β†’ Regression/Classification u New (ish) applications u Image β†’ Text u Image β†’ Image All materials at soph.info/odsc2019

  13. Essential parts: Stochastic Gradient Descent + BackProp Gradient Descent u Finds adjustment to function parameters that minimizes the loss function Back Propagation u Chain rule of calculus in algorithm form. u Applies gradient descent over many layers of a network. All materials at soph.info/odsc2019 Chollet 2018

  14. Deep Learning approach u Traditional Machine Learning u A lot of time spent engineering your data/features to find the best ones for a model to learn. u Train a shallow model to make predictions based on features. u Deep Learning u Time is spent on finding DL architecture that is able to learn the feature transformations it needs. u More time can be spent on improving/expanding dataset. u Train a model to find the best parameters for the entire pipeline from data -> prediction. All materials at soph.info/odsc2019

  15. GAN Overview All materials at soph.info/odsc2019

  16. Convolutional Classifiers u Convolutions learn feature maps u Use sampling/pooling to summarize over height and width of image u Output is some classification vector, e.g. probabilities source All materials at soph.info/odsc2019

  17. u Convolutional filiters u Pixels β†’ subparts β†’ parts β†’ whole Chollet 2018 All materials at soph.info/odsc2019

  18. u Convolutional filters u Pixels β†’ subparts β†’ parts β†’ whole u We can visualize this progression by finding input that maximizes activity at layer Olah 2017 All materials at soph.info/odsc2019

  19. Convolutional Generation u Convolutions learn feature maps u Upsampling/DeConvolution progressively grow image All materials at soph.info/odsc2019 Radford et al 2015

  20. GAN Architecture D(x) - Discriminator Given image u Attempts to classify u as fake or real All materials at soph.info/odsc2019

  21. GAN Architecture G(z) - Generator Given random u vector z Attempts to u generate an image that fools D(Β·) All materials at soph.info/odsc2019

  22. GAN Architecture G(z) - Generator D(x) - Discriminator Given random Given image u u vector z Attempts to classify u Attempts to as fake or real u generate an image that fools D(Β·) All materials at soph.info/odsc2019

  23. GAN Architecture All materials at soph.info/odsc2019 Goodfellow 2016

  24. Generator task G(z) - Generator Imagine you are the generator Given random u vector z CIFAR image data u (32x32) Attempts to u generate an image Generate a frog u that fools D(Β·) that will fool the discriminator All materials at soph.info/odsc2019

  25. Generator task You are the generator Imagine you can see the training u data. You can learn as much as you want u from the training data. You have to devise a strategy to trick u the Discriminator. What is your strategy for fooling the u discriminator? u i.e. what if you had to say/write pseudocode for the best strategy in a minute or so? All materials at soph.info/odsc2019

  26. Generator task What is your strategy? u Memorize training images? u You have ~ 1 million parameters but the training data has ~ 100 million pixels All materials at soph.info/odsc2019

  27. Generator task What is your strategy? u Memorize training images? u You have ~ 1 million parameters but the training data has ~ 100 million pixels u Instead the generator learns the distribution of the training data. u Attempts to generate an example from that distribution All materials at soph.info/odsc2019

  28. Distribution Learning Generator learns distribution of training data u Meaningful understanding of that training data All materials at soph.info/odsc2019 Radford et al 2015

  29. Advanced GAN Topics All materials at soph.info/odsc2019

  30. Lipschitz Continuity u Problem: in many cases, the discriminator can be essentially impossible for the generator to beat. u Impossible to win β†’ zero gradient β†’ no learning Lipschitz constant: Maximum rate of change of a function Spectral Normalization (Miyato et al 2018) constrains the Lipshitz constant of the discriminator, ensuring stable training of generator. source All materials at soph.info/odsc2019

  31. Multilabel Conditional GAN All materials at soph.info/odsc2019

  32. Classifier + GAN u Classes provide additional signal u both generator and discriminator learn data distribution more quickly u Significantly quicker learning (wall clock) u Allows direct manipulation of class feature in generator All materials at soph.info/odsc2019

  33. VAC GAN All materials at soph.info/odsc2019 Bazrafkan 2018

  34. VAC GAN u VAC GAN u Good: Versatile classification with GAN u Bad: Requires a 3 rd model u Today’s demo: VAC-GAN variant that combines Discriminator and Classifier All materials at soph.info/odsc2019 Bazrafkan 2018

  35. Results All materials at soph.info/odsc2019

  36. Results All materials at soph.info/odsc2019

  37. Results All materials at soph.info/odsc2019

  38. Results All materials at soph.info/odsc2019

  39. Results All materials at soph.info/odsc2019

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend