We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#18 에서 stylegan2_ffhq.pt, albedogan.pt, disp_GAN.pt를 요구하게 된다. 이 파일들을 찾아오자
stylegan2_ffhq.pt
albedogan.pt
disp_GAN.pt
## Initialize StyleGAN2 stylegan2_gen = Generator(1024, 512, 8, channel_multiplier=2) stylegan2_gen.to(args.device) ckpt_path = 'stylegan2/training_logs/checkpoint/stylegan2_ffhq.pt' ckpt = torch.load(ckpt_path, map_location=lambda storage, loc: storage) stylegan2_gen.load_state_dict(ckpt["g_ema"], strict=True) # mean_latent = stylegan2_gen.mean_latent(4096) ## Initialize AlbedoGAN albedogan = Generator(1024, 512, 8, channel_multiplier=2) albedogan = torch.nn.DataParallel(albedogan) albedogan.to(args.device) ckpt_path = 'stylegan2/training_logs/checkpoint/albedogan.pt' ckpt = torch.load(ckpt_path, map_location=lambda storage, loc: storage) albedogan.load_state_dict(ckpt["g"], strict=True) ## Initialize Displacement Generator disp_GAN = Generator(256, 512, 8, channel_multiplier=2) disp_GAN = torch.nn.DataParallel(disp_GAN) disp_GAN.to(args.device) ckpt_path = 'stylegan2/training_logs/checkpoint/disp_GAN.pt' ckpt = torch.load(ckpt_path, map_location=lambda storage, loc: storage) disp_GAN.load_state_dict(ckpt["g"], strict=True)
The text was updated successfully, but these errors were encountered:
: StyleGAN2의 FFHQ 가중치 다운로드
stylegan2/training_logs/checkpoint/stylegan2_ffhq.pt
Sorry, something went wrong.
: 기존 가중치의 문제가 있어 재학습 후 업로드 됨이 고지되었음 테스트 만을 위해서라도 임시 가중치 요청을 하였음.
No branches or pull requests
#18 에서
stylegan2_ffhq.pt
,albedogan.pt
,disp_GAN.pt
를 요구하게 된다.이 파일들을 찾아오자
The text was updated successfully, but these errors were encountered: