Skip to content

Designed a Generative Adversarial Network (GAN) for image outpainting using Machine Learning techniques to generate new images based on a given input image. Trained on over 2 million images as training data. Utilized Python and python libraries such as TensorFlow Keras, NumPy, Scikit-learn, and Pillow.

Osakwe1/Basquiat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Basquiat

We designed a Generative Adversarial Network for image outpainting as our project for the Le Wagon Data Science Bootcamp #1050. The primary inspiration for this was the recently introduced Outpainting feature by OpenAI's DALL-E 2.

Introduction

Our code is written in Python 3.10, and we used the Google Console Vertex AI VM (TensorFlow Enterprise 2.10) with an NVIDIA T4 GPU, 4 vCPUs, and 15 GB of RAM. The training and test set for this project were the Places365 Dataset provided by Bolei Zhou.

Getting Started

If you need help setting up your copy of the project, click the drop down below. If not, skip ahead.

So how do I set it up?
These instructions will get you a copy of the project up and running on your local machine for testing and development purposes.

First of all, this project makes use of all the following python libraries and packages:

Built With

In working on this project, the following libraries were utilized.

  • Python 🐍 - Programming language
  • Pandas 🐼 - Data manipulation library
  • Numpy 🔢 - Scientific maths library
  • scikit-learn 🗺️ - Machine Learning library
  • Matplotlib 📊 - Data visualization library
  • Seaborn 🌊 - Data visualization library
  • Tensorflow 📈 - Machine Learning and AI library
  • Pillow 🍃 - Image manipulation library
  • Streamlit 📈 - App hosting site
  • Clone the project repository to your local machine. To set up your own local copy of this project, you will need to 'clone' this repo. To create a clone, run this in your terminal
gh repo clone Osakwe1/Basquiat

Prerequisites

You will need to have Python 3 and the necessary libraries installed. You can install these libraries using pip by running the below :

pip install -r requirements.txt 
  • Clone the project repository to your local machine.
  • Open a command prompt or terminal window and navigate to the project directory.
  • If you have VS Code or Jupyter Notebook, you can open up the folder by running:
code .  # for VS Code

OR

jupyter notebook  # for Jupyter Notebook

If you do have either, I have linked the download link for VS code

Once in the root, you can run the site by running the below:
streamlit run Outpainting/Streamlit/Input.py

Model Architecture & Training

In designing this, we used a Conditional GAN comprising a Generator and Discriminator. The Generator produces outpaintings of masked images it deems to be 'realistic' based on the training set of images it has seen. The Discriminator identifies real images from the images created by the Generator and classifies them accordingly. The Discriminator returns feedback on the images it views as '1's and '0's, which is used to calculate the loss function.
Using backpropagation, the model weights are then adjusted by calculating the weight's impact on the output. The training process is shown in detail below:

Flowchart1 (2)

Using the model architecture designed, and sufficient training, the model was capable of producing convincing recreations of test images:

(L-R: After 1K steps, After 25K steps, After 50K steps, After 1M steps, After 2M Steps, Original Image)

image (1)

Gallery

Here are some of our results, taken directly from our model!

(L-R: Original image, Outpainted image)

combine_images combine_images (1) combine_images

About

Designed a Generative Adversarial Network (GAN) for image outpainting using Machine Learning techniques to generate new images based on a given input image. Trained on over 2 million images as training data. Utilized Python and python libraries such as TensorFlow Keras, NumPy, Scikit-learn, and Pillow.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages