MCPcopy Create free account

hub / github.com/KeepTryingTo/Pytorch-GAN / functions

Functions639 in github.com/KeepTryingTo/Pytorch-GAN

Methodregister_weights
Registers the weights of the model which will later be used when we take the moving average
StyleGAN/utils.py:112
Functionresize
:param file: :param size: :param folder_to_save: :return:
StyleGAN/prepare_data.py:17
Methodsample
Samples from the latent space and return the corresponding image space map. :param num_samples: (Int) Number of samples
PyTorch-VAE/models/miwae.py:166
Methodsample
Samples from the latent space and return the corresponding image space map. :param num_samples: (Int) Number of samples
PyTorch-VAE/models/dfcvae.py:192
Methodsample
Samples from the latent space and return the corresponding image space map. :param num_samples: (Int) Number of samples
PyTorch-VAE/models/logcosh_vae.py:157
Methodsample
Samples from the latent space and return the corresponding image space map. :param num_samples: (Int) Number of samples
PyTorch-VAE/models/cat_vae.py:179
Methodsample
Samples from the latent space and return the corresponding image space map. :param num_samples: (Int) Number of samples
PyTorch-VAE/models/info_vae.py:231
Methodsample
Samples from the latent space and return the corresponding image space map. :param num_samples: (Int) Number of samples
PyTorch-VAE/models/vanilla_vae.py:148
Methodsample
(self, batch_size:int, current_device: int, **kwargs)
PyTorch-VAE/models/base.py:16
Methodsample
Samples from the latent space and return the corresponding image space map. :param num_samples: (Int) Number of samples
PyTorch-VAE/models/lvae.py:239
Methodsample
Samples from the latent space and return the corresponding image space map. :param num_samples: (Int) Number of samples
PyTorch-VAE/models/dip_vae.py:166
Methodsample
Samples from the latent space and return the corresponding image space map. :param num_samples: (Int) Number of samples
PyTorch-VAE/models/wae_mmd.py:206
Methodsample
Samples from the latent space and return the corresponding image space map. :param num_samples: (Int) Number of samples
PyTorch-VAE/models/beta_vae.py:154
Methodsample
Samples from the latent space and return the corresponding image space map. :param num_samples: (Int) Number of samples
PyTorch-VAE/models/cvae.py:149
Methodsample
Samples from the latent space and return the corresponding image space map. :param num_samples: (Int) Number of samples
PyTorch-VAE/models/joint_vae.py:236
Methodsample
Samples from the latent space and return the corresponding image space map. :param num_samples: (Int) Number of samples
PyTorch-VAE/models/betatc_vae.py:213
Methodsample
Samples from the latent space and return the corresponding image space map. :param num_samples: (Int) Number of samples
PyTorch-VAE/models/twostage_vae.py:172
Methodsample
Samples from the latent space and return the corresponding image space map. :param num_samples: (Int) Number of samples
PyTorch-VAE/models/mssim_vae.py:155
Methodsample
Samples from the latent space and return the corresponding image space map. :param num_samples: (Int) Number of samples
PyTorch-VAE/models/vampvae.py:170
Methodsample
Samples from the latent space and return the corresponding image space map. :param num_samples: (Int) Number of samples
PyTorch-VAE/models/fvae.py:203
Methodsample
Samples from the latent space and return the corresponding image space map. :param num_samples: (Int) Number of samples
PyTorch-VAE/models/iwae.py:162
Methodsample
(self, num_samples: int, current_device: Union[int, str], **kwargs)
PyTorch-VAE/models/vq_vae.py:213
Functionsamples
:param args: 编码器产生的均值和噪声 :return:
VAE_AutoEncoder/utils.py:91
Functionsave_checkPoint
(model,optimizer,filename)
AutoEncoder/utils.py:49
Functionsave_checkPoint
(model,optimizer,filename)
Adversarial_AutoEncoder/utils.py:50
Functionsave_checkPoint
(model,optimizer,filename)
Dropout_AutoEncoder/utils.py:49
Functionsave_checkPoint
(model,optimizer,filename)
Denoising_AutoEncoder/utils.py:49
Functionsave_checkpoint
(model,optimizer,filename = "my_checkpoint.pth.tar",epochs = 0)
Code/utils.py:16
Functionsave_epoch_image
(model,filename,val_loader,epoch)
AutoEncoder/utils.py:15
Functionsave_epoch_image
(model1,model2,filename,val_loader,epoch)
Adversarial_AutoEncoder/utils.py:15
Functionsave_epoch_image
(model,filename,val_loader,epoch)
Dropout_AutoEncoder/utils.py:15
Functionsave_epoch_image
(model,filename,val_loader,epoch)
Denoising_AutoEncoder/utils.py:15
Functionsave_images
(imgs,epoch,step)
VAE_AutoEncoder/utils.py:65
Functionsave_model
:param model: :param epoch: :return:
VAE_AutoEncoder/utils.py:21
Functionseed_everthing
(seed = 42)
Code/utils.py:32
Functionseed_everything
(seed=42)
StyleGAN/utils.py:80
Functionseed_everything
(seed=42)
ProGAN/utils.py:76
MethodsetUp
(self)
PyTorch-VAE/tests/test_dipvae.py:9
MethodsetUp
(self)
PyTorch-VAE/tests/bvae.py:9
MethodsetUp
(self)
PyTorch-VAE/tests/test_swae.py:9
MethodsetUp
(self)
PyTorch-VAE/tests/test_joint_Vae.py:9
MethodsetUp
(self)
PyTorch-VAE/tests/test_wae.py:9
MethodsetUp
(self)
PyTorch-VAE/tests/text_vamp.py:9
MethodsetUp
(self)
PyTorch-VAE/tests/test_vae.py:9
MethodsetUp
(self)
PyTorch-VAE/tests/test_lvae.py:9
MethodsetUp
(self)
PyTorch-VAE/tests/test_vq_vae.py:9
MethodsetUp
(self)
PyTorch-VAE/tests/test_logcosh.py:9
MethodsetUp
(self)
PyTorch-VAE/tests/test_miwae.py:9
MethodsetUp
(self)
PyTorch-VAE/tests/test_fvae.py:9
MethodsetUp
(self)
PyTorch-VAE/tests/test_hvae.py:9
MethodsetUp
(self)
PyTorch-VAE/tests/test_mssimvae.py:9
MethodsetUp
(self)
PyTorch-VAE/tests/test_cat_vae.py:9
MethodsetUp
(self)
PyTorch-VAE/tests/test_betatcvae.py:9
MethodsetUp
(self)
PyTorch-VAE/tests/test_dfc.py:9
MethodsetUp
(self)
PyTorch-VAE/tests/test_gvae.py:9
MethodsetUp
(self)
PyTorch-VAE/tests/test_iwae.py:9
MethodsetUp
(self)
PyTorch-VAE/tests/text_cvae.py:8
Methodtest_forward
(self)
PyTorch-VAE/tests/test_dipvae.py:17
Methodtest_forward
(self)
PyTorch-VAE/tests/bvae.py:17
Methodtest_forward
(self)
PyTorch-VAE/tests/test_swae.py:16
Methodtest_forward
(self)
PyTorch-VAE/tests/test_joint_Vae.py:17
Methodtest_forward
(self)
PyTorch-VAE/tests/test_wae.py:16
Methodtest_forward
(self)
PyTorch-VAE/tests/text_vamp.py:17
Methodtest_forward
(self)
PyTorch-VAE/tests/test_vae.py:17
Methodtest_forward
(self)
PyTorch-VAE/tests/test_lvae.py:17
Methodtest_forward
(self)
PyTorch-VAE/tests/test_vq_vae.py:17
Methodtest_forward
(self)
PyTorch-VAE/tests/test_logcosh.py:17
Methodtest_forward
(self)
PyTorch-VAE/tests/test_miwae.py:17
Methodtest_forward
(self)
PyTorch-VAE/tests/test_fvae.py:20
Methodtest_forward
(self)
PyTorch-VAE/tests/test_hvae.py:17
Methodtest_forward
(self)
PyTorch-VAE/tests/test_mssimvae.py:18
Methodtest_forward
(self)
PyTorch-VAE/tests/test_cat_vae.py:17
Methodtest_forward
(self)
PyTorch-VAE/tests/test_betatcvae.py:17
Methodtest_forward
(self)
PyTorch-VAE/tests/test_dfc.py:18
Methodtest_forward
(self)
PyTorch-VAE/tests/test_gvae.py:18
Methodtest_forward
(self)
PyTorch-VAE/tests/test_iwae.py:17
Methodtest_forward
(self)
PyTorch-VAE/tests/text_cvae.py:12
Methodtest_generate
(self)
PyTorch-VAE/tests/test_dipvae.py:36
Methodtest_generate
(self)
PyTorch-VAE/tests/test_vq_vae.py:36
Methodtest_generate
(self)
PyTorch-VAE/tests/test_miwae.py:35
Methodtest_generate
(self)
PyTorch-VAE/tests/test_betatcvae.py:36
Methodtest_loss
(self)
PyTorch-VAE/tests/test_dipvae.py:24
Methodtest_loss
(self)
PyTorch-VAE/tests/bvae.py:23
Methodtest_loss
(self)
PyTorch-VAE/tests/test_swae.py:22
Methodtest_loss
(self)
PyTorch-VAE/tests/test_joint_Vae.py:23
Methodtest_loss
(self)
PyTorch-VAE/tests/test_wae.py:22
Methodtest_loss
(self)
PyTorch-VAE/tests/text_vamp.py:23
Methodtest_loss
(self)
PyTorch-VAE/tests/test_vae.py:23
Methodtest_loss
(self)
PyTorch-VAE/tests/test_lvae.py:24
Methodtest_loss
(self)
PyTorch-VAE/tests/test_vq_vae.py:24
Methodtest_loss
(self)
PyTorch-VAE/tests/test_logcosh.py:23
Methodtest_loss
(self)
PyTorch-VAE/tests/test_miwae.py:23
Methodtest_loss
(self)
PyTorch-VAE/tests/test_fvae.py:27
Methodtest_loss
(self)
PyTorch-VAE/tests/test_hvae.py:23
Methodtest_loss
(self)
PyTorch-VAE/tests/test_mssimvae.py:25
Methodtest_loss
(self)
PyTorch-VAE/tests/test_cat_vae.py:23
Methodtest_loss
(self)
PyTorch-VAE/tests/test_betatcvae.py:24
Methodtest_loss
(self)
PyTorch-VAE/tests/test_dfc.py:25
Methodtest_loss
(self)
PyTorch-VAE/tests/test_gvae.py:25
Methodtest_loss
(self)
PyTorch-VAE/tests/test_iwae.py:23
← previousnext →501–600 of 639, ranked by callers