default decoder learning rate to what was in the paper

This commit is contained in:
Phil Wang
2022-05-16 13:33:54 -07:00
parent 13382885d9
commit c7ea8748db
3 changed files with 3 additions and 3 deletions

View File

@@ -7,7 +7,7 @@ def separate_weight_decayable_params(params):
def get_optimizer(
params,
lr = 2e-5,
lr = 1e-4,
wd = 1e-2,
betas = (0.9, 0.999),
eps = 1e-8,

View File

@@ -363,7 +363,7 @@ class DecoderTrainer(nn.Module):
self,
decoder,
use_ema = True,
lr = 2e-5,
lr = 1e-4,
wd = 1e-2,
eps = 1e-8,
max_grad_norm = None,

View File

@@ -10,7 +10,7 @@ setup(
'dream = dalle2_pytorch.cli:dream'
],
},
version = '0.3.0',
version = '0.3.1',
license='MIT',
description = 'DALL-E 2',
author = 'Phil Wang',