Skip to content

Commit

Permalink
Merge 2400a7c into 1bec122
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyadamsfisher authored Mar 4, 2021
2 parents 1bec122 + 2400a7c commit 0c5981e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pl_bolts/models/autoencoders/basic_ae/basic_ae_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class AE(pl.LightningModule):
ae = AE()
# pretrained on cifar10
ae = AE.from_pretrained('cifar10-resnet18')
ae = AE(input_height=32).from_pretrained('cifar10-resnet18')
"""

pretrained_urls = {
Expand Down
4 changes: 2 additions & 2 deletions pl_bolts/models/autoencoders/basic_vae/basic_vae_module.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ class VAE(pl.LightningModule):
vae = VAE()
# pretrained on cifar10
vae = VAE.from_pretrained('cifar10-resnet18')
vae = VAE(input_height=32).from_pretrained('cifar10-resnet18')
# pretrained on stl10
vae = VAE.from_pretrained('stl10-resnet18')
vae = VAE(input_height=32).from_pretrained('stl10-resnet18')
"""

pretrained_urls = {
Expand Down

0 comments on commit 0c5981e

Please sign in to comment.