Skip to content
This repository has been archived by the owner on Mar 21, 2024. It is now read-only.

Fix learning rate parameter in SSLContainer #557

Merged
merged 2 commits into from
Aug 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ mounting and running matplotblib on some machines. Re-instantiated a disabled te
- ([#509](https://github.com/microsoft/InnerEye-DeepLearning/pull/509)) Fix issue where model checkpoints were not loaded
in inference-only runs when using lightning containers.
- ([#553](https://github.com/microsoft/InnerEye-DeepLearning/pull/553)) Fix incomplete test data module setup in Lightning inference.
- ([#557](https://github.com/microsoft/InnerEye-DeepLearning/pull/557)) Fix issue where learning rate was not set
correctly in the SimCLR module

### Removed

Expand Down
2 changes: 1 addition & 1 deletion InnerEye/ML/SSL/lightning_containers/ssl_container.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def create_model(self) -> LightningModule:
gpus=self.total_num_gpus,
num_samples=self.data_module.num_samples,
batch_size=self.data_module.batch_size,
lr=self.l_rate,
learning_rate=self.l_rate,
max_epochs=self.num_epochs)
elif self.ssl_training_type == SSLTrainingType.BYOL:
model = BYOLInnerEye(encoder_name=self.ssl_encoder.value,
Expand Down