nn.load_parameters("styleGAN2_G_params.h5")
rgb_output = generate(batch_size, style_noises,
args.stochastic_seed, args.truncation_psi)
rgb_output.forward()
// convert to uint8 to save an image file
image = convert_images_to_uint8(rgb_output, drange=[-1, 1])
if args.output_filename is None:
After Change
print(f"using style noise seed {args.seed_mix} for layers {args.mix_after}-{num_layers}.")
rnd = np.random.RandomState(args.seed_mix)
z2 = rnd.randn(batch_size, 512)
style_noises = [nn.NdArray.from_numpy_array(z)]style_noises += [nn.NdArray.from_numpy_array(z2)]
else:
// no style mixing (single noise / style is used)
print(f"using style noise seed {args.seed} for entire layers.")
style_noises = [nn.NdArray.from_numpy_array(z) for _ in range(2)]