Skip to content

Commit

Permalink
small parameter updates
Browse files Browse the repository at this point in the history
  • Loading branch information
TillBeemelmanns committed Sep 28, 2022
1 parent 5d2ff78 commit ba4fc1f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions range_image_compression/configs/additive_lstm_demo_cfg.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,12 @@ def additive_lstm_demo_cfg():
cfg.val_batch_size = 1
cfg.save_freq = 20
cfg.train_output_dir = "output"
cfg.xla = False
cfg.xla = True
cfg.mixed_precision = False

# Learning Rate scheduler
cfg.lr_init = 2e-3
cfg.min_learning_rate = 2e-8
cfg.lr_init = 5e-4
cfg.min_learning_rate = 5e-7
cfg.min_learning_rate_epoch = cfg.epochs
cfg.max_learning_rate_epoch = 0

Expand Down
2 changes: 1 addition & 1 deletion range_image_compression/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# ==============================================================================

import tensorflow as tf
import numpy as np


from architectures import Additive_LSTM_Demo, Additive_LSTM, Additive_LSTM_Slim, Additive_GRU, Oneshot_LSTM
from configs import additive_lstm_demo_cfg, additive_lstm_cfg, additive_lstm_slim_cfg, additive_gru_cfg, oneshot_lstm_cfg
Expand Down

0 comments on commit ba4fc1f

Please sign in to comment.