Draggan

Official Code for DragGAN (SIGGRAPH 2023)
Alternatives To Draggan
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Draggan33,596
a month ago132otherPython
Official Code for DragGAN (SIGGRAPH 2023)
Ai For Beginners23,077
14 hours ago46mitJupyter Notebook
12 Weeks, 24 Lessons, AI for All!
So Vits Svc20,615
20 days ago29agpl-3.0Python
SoftVC VITS Singing Voice Conversion
Mit Deep Learning9,328
a year ago15mitJupyter Notebook
Tutorials, assignments, and competitions for MIT Deep Learning related courses.
Tensorlayer7,2533469 months ago83February 15, 202230otherPython
Deep Learning and Reinforcement Learning Library for Scientists and Engineers
Stylegan2 Pytorch3,1472a year ago146July 19, 2022120mitPython
Simplest working implementation of Stylegan2, state of the art generative adversarial network, in Pytorch. Enabling everyone to experience disentanglement
Dalle Playground2,725
2 months ago49mitJavaScript
A playground to generate images from any text prompt using Stable Diffusion (past: using DALL-E Mini)
Weekly.manong.io1,909
2 years ago1
码农周刊 - 每周五发送,欢迎订阅!欢迎加入读者圈子,一起交流!
Big Sleep1,726
2 years ago54January 31, 202251mitPython
A simple command line tool for text to image generation, using OpenAI's CLIP and a BigGAN. Technique was originally created by https://twitter.com/advadnoun
Pytorch Cpp1,690
a month ago3mitC++
C++ Implementation of PyTorch Tutorials for Everyone
Alternatives To Draggan
Select To Compare


Alternative Project Comparisons
Readme

Drag Your GAN: Interactive Point-based Manipulation on the Generative Image Manifold

Xingang Pan

<a href="https://ayushtewari.com/"><strong>Ayush Tewari</strong></a>

<a href="https://people.mpi-inf.mpg.de/~tleimkue/"><strong>Thomas Leimkhler</strong></a>

<a href="https://lingjie0206.github.io/"><strong>Lingjie Liu</strong></a>

<a href="https://www.meka.page/"><strong>Abhimitra Meka</strong></a>

<a href="http://www.mpi-inf.mpg.de/~theobalt/"><strong>Christian Theobalt</strong></a>

SIGGRAPH 2023 Conference Proceedings


PyTorch Twitter Paper PDF Project Page Open In Colab

Web Demos

Open in OpenXLab

Huggingface

Requirements

If you have CUDA graphic card, please follow the requirements of NVlabs/stylegan3.

The usual installation steps involve the following commands, they should set up the correct CUDA version and all the python packages

conda env create -f environment.yml
conda activate stylegan3

Then install the additional requirements

pip install -r requirements.txt

Otherwise (for GPU acceleration on MacOS with Silicon Mac M1/M2, or just CPU) try the following:

cat environment.yml | \
  grep -v -E 'nvidia|cuda' > environment-no-nvidia.yml && \
    conda env create -f environment-no-nvidia.yml
conda activate stylegan3

# On MacOS
export PYTORCH_ENABLE_MPS_FALLBACK=1

Run Gradio visualizer in Docker

Provided docker image is based on NGC PyTorch repository. To quickly try out visualizer in Docker, run the following:

# before you build the docker container, make sure you have cloned this repo, and downloaded the pretrained model by `python scripts/download_model.py`.
docker build . -t draggan:latest  
docker run -p 7860:7860 -v "$PWD":/workspace/src -it draggan:latest bash
# (Use GPU)if you want to utilize your Nvidia gpu to accelerate in docker, please add command tag `--gpus all`, like:
#   docker run --gpus all  -p 7860:7860 -v "$PWD":/workspace/src -it draggan:latest bash

cd src && python visualizer_drag_gradio.py --listen

Now you can open a shared link from Gradio (printed in the terminal console).
Beware the Docker image takes about 25GB of disk space!

Download pre-trained StyleGAN2 weights

To download pre-trained weights, simply run:

python scripts/download_model.py

If you want to try StyleGAN-Human and the Landscapes HQ (LHQ) dataset, please download weights from these links: StyleGAN-Human, LHQ, and put them under ./checkpoints.

Feel free to try other pretrained StyleGAN.

Run DragGAN GUI

To start the DragGAN GUI, simply run:

sh scripts/gui.sh

If you are using windows, you can run:

.\scripts\gui.bat

This GUI supports editing GAN-generated images. To edit a real image, you need to first perform GAN inversion using tools like PTI. Then load the new latent code and model weights to the GUI.

You can run DragGAN Gradio demo as well, this is universal for both windows and linux:

python visualizer_drag_gradio.py

Acknowledgement

This code is developed based on StyleGAN3. Part of the code is borrowed from StyleGAN-Human.

(cheers to the community as well)

License

The code related to the DragGAN algorithm is licensed under CC-BY-NC. However, most of this project are available under a separate license terms: all codes used or modified from StyleGAN3 is under the Nvidia Source Code License.

Any form of use and derivative of this code must preserve the watermarking functionality showing "AI Generated".

BibTeX

@inproceedings{pan2023draggan,
    title={Drag Your GAN: Interactive Point-based Manipulation on the Generative Image Manifold},
    author={Pan, Xingang and Tewari, Ayush, and Leimk{\"u}hler, Thomas and Liu, Lingjie and Meka, Abhimitra and Theobalt, Christian},
    booktitle = {ACM SIGGRAPH 2023 Conference Proceedings},
    year={2023}
}
Popular Artificial Intelligence Projects
Popular Generative Adversarial Network Projects
Popular Artificial Intelligence Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Python
Artificial Intelligence
Generative Adversarial Network
Generative Model
Image Manipulation