JCBrouwer / maua-stylegan2

This is the repo for my experiments with StyleGAN2. There are many like it, but this one is mine. Contains code for the paper Audio-reactive Latent Interpolations with StyleGAN.
https://wavefunk.xyz/audio-reactive-stylegan
179 stars 29 forks source link

Stylegan2-ADA PyTorch #25

Closed mustafakucuk0 closed 2 years ago

mustafakucuk0 commented 2 years ago

Hi. I am trying to use your code with my locally trained model. I trained my model with stylegan2-ADA PyTorch but I cannot use your code directly because I get errors. Do I need to train with the original StyleGAN2, not ADA? Isn't this report compatible with ADA implementation?

Thanks.

JCBrouwer commented 2 years ago

The convert_weight.py in this repo can't handle the newer ADA pytorch version.

You should be able to convert with this notebook by @dvschultz though https://github.com/dvschultz/stylegan2-ada-pytorch/blob/main/SG2_ADA_PT_to_Rosinality.ipynb

I've been working on a big clean-up / overhaul of this repo for a while, cuz it's honestly in a pretty difficult to use state as you've noticed

mustafakucuk0 commented 2 years ago

Thanks!