Skip to content

Commit

Permalink
fix: dspn inner learning rate to conf
Browse files Browse the repository at this point in the history
  • Loading branch information
Francesco Stablum committed Nov 8, 2021
1 parent a0b83e0 commit 6cbf15b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions model_config/dspn_budget_normal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ divide_output_layer: True
latent_l1_norm: 10.0
max_set_size: 200
dspn_iter: 4
dspn_lr: 800
3 changes: 2 additions & 1 deletion model_config/dspn_result_normal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ batch_size: 1024
divide_output_layer: True
latent_l1_norm: 10.0
max_set_size: 200
dspn_iter: 4
dspn_iter: 4
dspn_lr: 800
1 change: 1 addition & 0 deletions model_config/dspn_result_short.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ divide_output_layer: True
latent_l1_norm: 10.0
max_set_size: 200
dspn_iter: 4
dspn_lr: 800
2 changes: 1 addition & 1 deletion models/dspn_autoencoder.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def __init__(self, **kwargs):
self.max_set_size,
kwargs['item_dim'],
kwargs['dspn_iter'], # number of iteration on the decoder # FIXME: to conf
800, # inner learning rate # FIXME: to conf
kwargs['dspn_lr'], # inner learning rate # FIXME: to conf
)

def _make_target(self,loaded_set):
Expand Down

0 comments on commit 6cbf15b

Please sign in to comment.