Is model.netArc defined in your released version? #298

Open
opened 2022-07-12 00:07:19 +02:00 by B-1368 · 1 comment
B-1368 commented 2022-07-12 00:07:19 +02:00 (Migrated from github.com)

In the training process, we will only get net_G and net_D. However, when testing it seems another model is required. L57 of test_one_image.py is latend_id = model.netArc(img_id_downsample), but model.netArc is loaded from arcface_checkpoint.tar you share. I cannot find any definition about the model architecture of that. So is it defined in this repo? If not, will you release the architecture? Thanks!

In the training process, we will only get net_G and net_D. However, when testing it seems another model is required. L57 of `test_one_image.py` is `latend_id = model.netArc(img_id_downsample)`, but `model.netArc` is loaded from arcface_checkpoint.tar you share. I cannot find any definition about the model architecture of that. So is it defined in this repo? If not, will you release the architecture? Thanks!
ExponentialML commented 2022-07-14 04:26:09 +02:00 (Migrated from github.com)

This is an interesting question that I'm interested in. While I'm not the author, I believe this checkpoint was trained on a similar network related to pix2pixHD (or some other image to image translation). The part of the code you are referring to is heavily referenced from here, which is probably how this network was trained.

This is an interesting question that I'm interested in. While I'm not the author, I believe this checkpoint was trained on a similar network related to pix2pixHD (or some other image to image translation). The part of the code you are referring to is heavily referenced from [here](https://github.com/lernapparat/lernapparat/blob/master/style_gan/pytorch_style_gan.ipynb), which is probably how this network was trained.
Sign in to join this conversation.