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

Commit a9f3dd8

Browse files
authored
Fix for AzureML environment problem (#587)
1 parent 28d40c1 commit a9f3dd8

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ gets uploaded to AzureML, by skipping all test folders.
5353
- ([#572](https://github.com/microsoft/InnerEye-DeepLearning/pull/572)) Updated to new version of hi-ml package
5454

5555
### Fixed
56+
- ([#587](https://github.com/microsoft/InnerEye-DeepLearning/pull/587)) Bug fix for regression in AzureML's handling of environments: upgrade to hi-ml 0.1.11
5657
- ([#537](https://github.com/microsoft/InnerEye-DeepLearning/pull/537)) Print warning if inference is disabled but comparison requested.
5758
- ([#567](https://github.com/microsoft/InnerEye-DeepLearning/pull/567)) fix pillow version.
5859
- ([#546](https://github.com/microsoft/InnerEye-DeepLearning/pull/546)) Environment and hello_world_model documentation updated

Tests/Common/test_commandline_parsing.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@ def test_create_ml_runner_args(is_container: bool,
6767
run=None,
6868
is_running_in_azure_ml=False,
6969
output_folder=Path.cwd(),
70-
logs_folder=Path.cwd())
70+
logs_folder=Path.cwd(),
71+
mount_contexts=[])
7172
runner.run_in_situ(azure_run_info)
7273
azure_config = runner.azure_config
7374
container_or_legacy_config = runner.lightning_container if is_container else runner.model_config

Tests/ML/test_download_upload.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,8 @@ def _test_mount_for_lightning_container(test_output_dirs: OutputFolderForTests,
166166
run=None,
167167
is_running_in_azure_ml=False,
168168
output_folder=Path(),
169-
logs_folder=Path()
169+
logs_folder=Path(),
170+
mount_contexts=[]
170171
))
171172
return runner.container
172173

environment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ dependencies:
2323
- gitpython==3.1.7
2424
- gputil==1.4.0
2525
- h5py==2.10.0
26-
- hi-ml==0.1.10
27-
- hi-ml-azure==0.1.10
26+
- hi-ml==0.1.11
27+
- hi-ml-azure==0.1.11
2828
- InnerEye-DICOM-RT==1.0.1
2929
- joblib==0.16.0
3030
- jupyter==1.0.0

0 commit comments

Comments
 (0)