All Projects → oovm → StyleGAN-Zoo

oovm / StyleGAN-Zoo

Licence: Apache-2.0 license
No description or website provided.

Programming Languages

python
139335 projects - #7 most used programming language
shell
77523 projects

Projects that are alternatives of or similar to StyleGAN-Zoo

stylegan2-landmark-projection
Experimental repository attempting to project facial landmarks into the StyleGAN2 latent space.
Stars: ✭ 14 (-79.1%)
Mutual labels:  stylegan
PTI
Official Implementation for "Pivotal Tuning for Latent-based editing of Real Images" (ACM TOG 2022) https://arxiv.org/abs/2106.05744
Stars: ✭ 523 (+680.6%)
Mutual labels:  stylegan
StyleGAN-nada
stylegan-nada.github.io/
Stars: ✭ 1,018 (+1419.4%)
Mutual labels:  stylegan
Awesome Deeplearning Resources
Deep Learning and deep reinforcement learning research papers and some codes
Stars: ✭ 2,483 (+3605.97%)
Mutual labels:  modelzoo
deepzoo
🐺 🐯 🐋 🐘 🐒 Deep Learning model Zoo
Stars: ✭ 19 (-71.64%)
Mutual labels:  modelzoo
ModelZoo.pytorch
Hands on Imagenet training. Unofficial ModelZoo project on Pytorch. MobileNetV3 Top1 75.64🌟 GhostNet1.3x 75.78🌟
Stars: ✭ 42 (-37.31%)
Mutual labels:  modelzoo
Styleflow
StyleFlow: Attribute-conditioned Exploration of StyleGAN-generated Images using Conditional Continuous Normalizing Flows (ACM TOG 2021)
Stars: ✭ 1,982 (+2858.21%)
Mutual labels:  stylegan
Alae
[CVPR2020] Adversarial Latent Autoencoders
Stars: ✭ 3,178 (+4643.28%)
Mutual labels:  stylegan
HistoGAN
Reference code for the paper HistoGAN: Controlling Colors of GAN-Generated and Real Images via Color Histograms (CVPR 2021).
Stars: ✭ 158 (+135.82%)
Mutual labels:  stylegan
steam-stylegan2
Train a StyleGAN2 model on Colaboratory to generate Steam banners.
Stars: ✭ 30 (-55.22%)
Mutual labels:  stylegan
StyleGANCpp
Unofficial implementation of StyleGAN's generator
Stars: ✭ 25 (-62.69%)
Mutual labels:  stylegan
generative deep learning
Generative Deep Learning Sessions led by Anugraha Sinha (Machine Learning Tokyo)
Stars: ✭ 24 (-64.18%)
Mutual labels:  stylegan
GAN-Anime-Characters
Applied several Generative Adversarial Networks (GAN) techniques such as: DCGAN, WGAN and StyleGAN to generate Anime Faces and Handwritten Digits.
Stars: ✭ 43 (-35.82%)
Mutual labels:  stylegan
stylegan-v
[CVPR 2022] StyleGAN-V: A Continuous Video Generator with the Price, Image Quality and Perks of StyleGAN2
Stars: ✭ 136 (+102.99%)
Mutual labels:  stylegan
overlord
Official pytorch implementation of "Scaling-up Disentanglement for Image Translation", ICCV 2021.
Stars: ✭ 35 (-47.76%)
Mutual labels:  stylegan
stylegan-pokemon
Generating Pokemon cards using a mixture of StyleGAN and RNN to create beautiful & vibrant cards ready for battle!
Stars: ✭ 47 (-29.85%)
Mutual labels:  stylegan
Generative-Model
Repository for implementation of generative models with Tensorflow 1.x
Stars: ✭ 66 (-1.49%)
Mutual labels:  stylegan
coursera-gan-specialization
Programming assignments and quizzes from all courses within the GANs specialization offered by deeplearning.ai
Stars: ✭ 277 (+313.43%)
Mutual labels:  stylegan
hyperstyle
Official Implementation for "HyperStyle: StyleGAN Inversion with HyperNetworks for Real Image Editing" (CVPR 2022) https://arxiv.org/abs/2111.15666
Stars: ✭ 874 (+1204.48%)
Mutual labels:  stylegan

StyleGAN Zoo

Base on https://github.com/podgorskiy/StyleGAN_Blobless

Find models on https://github.com/GalAster/StyleGAN-Zoo/releases

Install

Pytorch needed, install via conda first

conda install pytorch torchvision cudatoolkit=10.1 -c pytorch -y
pip install stylegan_zoo

Start

  • For jupyter:
from sgan import StyleGAN
a = StyleGAN('asuka')
a.show()

  • For mathematica:
from sgan import StyleGAN

StyleGAN('asuka')

  • Multi-generation
from sgan import generate

generate('asuka', 4)

  • Style-interpolate
from sgan import generate, style_interpolate

start, end = generate('asuka', 2)
style_interpolate(start, end, steps=16)

License

Part License
Code Apache License Version 2.0
Asuka CC0 - Creative Commons
Horo CC0 - Creative Commons
Baby CC4.0 Non-Commercial
FFHQ
CelebaHQ
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].