Skip to content

Commit

Permalink
Ignore long string
Browse files Browse the repository at this point in the history
  • Loading branch information
akihironitta committed Jan 10, 2021
1 parent 9ec3e29 commit 51154d2
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 @@ -29,7 +29,7 @@ class AE(pl.LightningModule):
"""

pretrained_urls = {
'cifar10-resnet18': 'https://pl-bolts-weights.s3.us-east-2.amazonaws.com/ae/ae-cifar10/checkpoints/epoch%3D96.ckpt'
'cifar10-resnet18': 'https://pl-bolts-weights.s3.us-east-2.amazonaws.com/ae/ae-cifar10/checkpoints/epoch%3D96.ckpt' # noqa: E501
}

def __init__(
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 @@ -32,8 +32,8 @@ class VAE(pl.LightningModule):
"""

pretrained_urls = {
'cifar10-resnet18': 'https://pl-bolts-weights.s3.us-east-2.amazonaws.com/vae/vae-cifar10/checkpoints/epoch%3D89.ckpt',
'stl10-resnet18': 'https://pl-bolts-weights.s3.us-east-2.amazonaws.com/vae/vae-stl10/checkpoints/epoch%3D89.ckpt'
'cifar10-resnet18': 'https://pl-bolts-weights.s3.us-east-2.amazonaws.com/vae/vae-cifar10/checkpoints/epoch%3D89.ckpt', # noqa: E501
'stl10-resnet18': 'https://pl-bolts-weights.s3.us-east-2.amazonaws.com/vae/vae-stl10/checkpoints/epoch%3D89.ckpt' # noqa: E501
}

def __init__(
Expand Down

0 comments on commit 51154d2

Please sign in to comment.