An open API service indexing awesome lists of open source software.

https://github.com/arthurfdlr/ganightsky

🌌The Jupyter Notebook behind ThisNightSkyDoesNotExist - Train a StyleGan2-ADA on a custom image dataset scrapped from Instagram!
https://github.com/arthurfdlr/ganightsky

gan generative-adversarial-network generative-model google-colab stylegan2-ada

Last synced: 11 months ago
JSON representation

🌌The Jupyter Notebook behind ThisNightSkyDoesNotExist - Train a StyleGan2-ADA on a custom image dataset scrapped from Instagram!

Awesome Lists containing this project

README

          



Night Sky Latent Walk

# 🚀 StyleGan2-ADA for Google Colab

Open In Colab

- [Install StyleGAN2-ADA on your Google Drive](#install-stylegan2-ada-on-your-google-drive)
- [Train a custom model](#train-a-custom-model)
- [Convert dataset to .tfrecords](#convert-dataset-to-tfrecords)
- [Launch training](#launch-training)
- [Generate images from pre-trained model](#generate-images-from-pre-trained-model)
- [Latent space exploration](#latent-space-exploration)
- [While you wait ...](#while-you-wait-)

## Install StyleGAN2-ADA on your Google Drive

StyleGAN2-ADA only works with Tensorflow 1. Run the next cell before anything else to make sure we’re using TF1 and not TF2.

```python
%tensorflow_version 1.x
!nvidia-smi
```

Then, mount your Drive to the Colab notebook:

```python
from google.colab import drive
from pathlib import Path

content_path = Path('/').absolute() / 'content'
drive_path = content_path / 'drive'
drive.mount(str(drive_path))
```

Finally, run this cell to install StyleGAN2-ADA on your Drive. If you’ve already installed the repository, it will skip the installation process and only check for updates. If you haven’t installed it, it will install all the necessary files. Beside, **in**, **out**, **datasets** and **training** folders are generated for data storage. Everything will be available on your Google Drive in the folder **StyleGAN2-ADA** even after closing this Notebook.

```python
stylegan2_repo_url = 'https://github.com/ArthurFDLR/stylegan2-ada' # Original repository: https://github.com/NVlabs/stylegan2-ada
project_path = drive_path / 'MyDrive' / 'StyleGAN2-ADA'
stylegan2_repo_path = project_path / 'stylegan2-ada'

# Create project folder if inexistant
if not project_path.is_dir():
%mkdir "{project_path}"
%cd "{project_path}"

for dir in ['in', 'out', 'datasets', 'training']:
if not (project_path / dir).is_dir():
%mkdir {dir}
if not (project_path / 'datasets' / 'source').is_dir():
%mkdir "{project_path / 'datasets' / 'source'}"

# Download StyleGAN2-ada
!git config --global user.name "ArthurFDLR"
!git config --global user.email "arthfind@gmail.com"
if stylegan2_repo_path.is_dir():
!git -C "{stylegan2_repo_path}" fetch origin
!git -C "{stylegan2_repo_path}" checkout origin/main -- *.py
else:
print("Install StyleGAN2-ADA")
!git clone {stylegan2_repo_url}
```

## Train a custom model

Once you have installed StyleGAN2-ADA on your Google Drive and set up the working directory, you can upload your training dataset images in the associated folder.

```python
dataset_name = 'NightSky'
datasets_source_path = project_path / 'datasets' / 'source' / (dataset_name + '.zip')
if datasets_source_path.is_dir():
print("Dataset ready for import.")
else:
print('Upload your images dataset as {}'.format(datasets_source_path))
```

Unfortunately, large datasets might exceed the Google Drive quota after a few training batches. Indeed, StyleGAN2 download datasets multiple times during training. You might have to import your dataset in the local storage session. However, large files cannot be copy/paste from Drive *(Input/Output error)*.

Run this cell to download your zipped dataset from your Drive and unzip it in the local session.

```python
local_dataset_path = content_path / 'dataset'
if not local_dataset_path.is_dir():
print("Importing dataset...")
%mkdir "{local_dataset_path}"
%cp -a "{project_path / 'datasets' / 'source' / (dataset_name + '.zip')}" "{local_dataset_path}"
print("Zip file succesfuly imported")
else:
print('Zip file allready imported')

import zipfile
with zipfile.ZipFile(str(local_dataset_path / (dataset_name + '.zip')), 'r') as zip_ref:
zip_ref.extractall(str(local_dataset_path))
print('Extraction completed')
```

### Convert dataset to .tfrecords

Next, we need to convert our image dataset to a format that StyleGAN2-ADA can read:`.tfrecords`.

This can take a while.

```python
local_images_path = local_dataset_path / 'images'
local_dataset_path /= 'tfr'

if (local_dataset_path).is_dir():
print('\N{Heavy Exclamation Mark Symbol} Dataset already created \N{Heavy Exclamation Mark Symbol}')
print('Delete current dataset folder ({}) to regenerate tfrecords.'.format(local_dataset_path))
else:
%mkdir "{local_dataset_path}"
!python "{stylegan2_repo_path / 'dataset_tool.py'}" create_from_images \
"{local_dataset_path}" "{local_images_path}"
```

### Launch training

There are numerous arguments to tune the training of your model. To obtain nice results, you will certainly have to experiment. Here are the most popular parameters:

* *mirror:* Should the images be mirrored vertically?
* *mirrory:* Should the images be mirrored horizontally?
* *snap:* How often should the model generate image samples and a network pickle (.pkl file)?
* *resume:* Network pickle to resume training from?

To see all the options, run the following ```help``` cell.

Please note that Google Colab Pro gives access to V100 GPUs, which drastically decreases (~3x) processing time over P100 GPUs.

```python
!python "{stylegan2_repo_path / 'train.py'}" --help
```

```python
training_path = project_path / 'training' / dataset_name
if not training_path.is_dir():
%mkdir "{training_path}"

#how often should the model generate samples and a .pkl file
snapshot_count = 2
#should the images be mirrored left to right?
mirrored = True
#should the images be mirrored top to bottom?
mirroredY = False
#metrics?
metric_list = None
#augments
augs = 'bgc'

resume_from = 'ffhq1024'

!python "{stylegan2_repo_path / 'train.py'}" --outdir="{training_path}" \
--data="{local_dataset_path}" --resume="{resume_from}" \
--snap={snapshot_count} --augpipe={augs} \
--mirror={mirrored} --mirrory={mirroredY} \
--metrics={metric_list} #--dry-run
```

## Generate images from pre-trained model

You can finally generate images using a pre-trained network once everything is set-up. You can naturally use [your own model once it is trained](#scrollTo=Ti11YiPAiQpb&uniqifier=1) or use the ones NVLab published on [their website](https://nvlabs-fi-cdn.nvidia.com/stylegan2-ada/pretrained/).


Night Sky Latent Walk

```python
%pip install opensimplex
!python "{stylegan2_repo_path / 'generate.py'}" generate-images --help
```

```python
from numpy import random
seed_init = random.randint(10000)
nbr_images = 6

generation_from = 'ffhq1024'

!python "{stylegan2_repo_path / 'generate.py'}" generate-images \
--outdir="{project_path / 'out'}" --trunc=0.7 \
--seeds={seed_init}-{seed_init+nbr_images-1} --create-grid \
--network={generation_from}
```

## Latent space exploration

It is also possible to explore the latent space associated with our model and [generate videos like this one](https://youtu.be/dcb4Ckpkx2o).

```python
%pip install opensimplex
!python "{stylegan2_repo_path / 'generate.py'}" generate-latent-walk --help
```

```python
from numpy import random
walk_types = ['line', 'sphere', 'noiseloop', 'circularloop']
latent_walk_path = project_path / 'out' / 'latent_walk'
if not latent_walk_path.is_dir():
%mkdir "{latent_walk_path}"

explored_network = 'ffhq1024'

seeds = random.randint(10000) for i in range(50)
print("Base seeds:", seeds)
!python "{stylegan2_repo_path / 'generate.py'}" generate-latent-walk --network="{explored_network}" \
--outdir="{latent_walk_path}" --trunc=0.7 --walk-type="{walk_types[2]}" \
--seeds={','.join(map(str, seeds))} --frames {len(seeds)*20}
```

## While you wait ...

... learn more about Generative Adversarial Networks and StyleGAN2-ADA:

* [This Night Sky Does Not Exist](https://arthurfindelair.com/thisnightskydoesnotexist/): Generation of images from a model created using this Notebook on Google Colab Pro.
* [This **X** Does Not Exist](https://thisxdoesnotexist.com/): Collection of sites showing the power of GANs.
* [Karras, Tero, et al. _Analyzing and Improving the Image Quality of StyleGAN._ CVPR 2020.](https://arxiv.org/pdf/2006.06676.pdf): Paper published for the release of StyleGAN2-ADA.
* [Official implementation of StyleGAN2-ADA](https://github.com/NVlabs/stylegan2-ada)
* [StyleGAN v2: notes on training and latent space exploration](https://towardsdatascience.com/stylegan-v2-notes-on-training-and-latent-space-exploration-e51cf96584b3): Interesting article from Toward Data Science