justinpinkney / awesome-pretrained-stylegan2

A collection of pre-trained StyleGAN 2 models to download
1.26k stars 108 forks source link

Add models from Stylegan2 ADA #25

Open justinpinkney opened 3 years ago

andybak commented 3 years ago

I was curious about this. Is it possible to use stylegan2 networks with stylegan2-ada? I'm guessing pkl files are pretty tricky to convert because they are completely entangled with implementation details.

Is it possible to use something like ONNX as an intermediate format?

johndpope commented 3 years ago

I believe they're interchangable.

justinpinkney commented 3 years ago

I was curious about this. Is it possible to use stylegan2 networks with stylegan2-ada? I'm guessing pkl files are pretty tricky to convert because they are completely entangled with implementation details.

Is it possible to use something like ONNX as an intermediate format?

StyleGAN2 -> StyleGAN2 ADA is fine I believe, but not the other way round. Like you say pkl is just a bad format for saving these things. Converting to a pytorch state_dict for use with rosinality/stylegan2-pytorch is a much more interchangeable format.