I am training a StyleGAN2 model with your adjusted StyleGAN2 repo.
It looks pretty good because it generates good fake images.
But the thing is, when I tried to blend with the ffhq model, my model doesn't be extracted any Conv layer inside.
When I directly print the return of extract_conv_names(model) with my model, it returns just an empty list.
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
[<ipython-input-31-71c3d5ee09d7>](https://localhost:8080/#) in <module>()
----> 9 blend_models.main(lowpoly_model_path, face512_model_path, res, output_grid=filename, verbose = True)
1 frames
[/content/stylegan2/blend_models.py](https://localhost:8080/#) in blend_models(model_1, model_2, resolution, level, blend_width, verbose)
62 assert all((x == y for x, y in zip(model_1_names, model_2_names)))
63
---> 64 model_out = model_1.clone()
65
66 short_names = [(x[1:3]) for x in model_1_names]
ValueError: ('8x8', 0) is not in list
I used the latest snapshot that I trained, something like network-snapshot-000769.pkl, but it didn't reach the total kimg. I don't believe that is the problem, though.
Let me share the log of training.
Any hints or comments will be appreciated. Thank you.
Hello @justinpinkney,
I am training a StyleGAN2 model with your adjusted StyleGAN2 repo. It looks pretty good because it generates good fake images.
But the thing is, when I tried to blend with the ffhq model, my model doesn't be extracted any Conv layer inside. When I directly print the return of
extract_conv_names(model)
with my model, it returns just an empty list.I used the latest snapshot that I trained, something like
network-snapshot-000769.pkl
, but it didn't reach the total kimg. I don't believe that is the problem, though.Let me share the log of training. Any hints or comments will be appreciated. Thank you.