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

Minor changes to CovidModel config parameters and updated report #554

Merged
merged 5 commits into from
Aug 25, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Remove cryptography from list of invalid packages
  • Loading branch information
Shruthi42 committed Aug 25, 2021
commit 44760ab3530a51ac91974b6bbe78ba31be4eb44e
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ in inference-only runs when using lightning containers.
- ([#526](https://github.com/microsoft/InnerEye-DeepLearning/pull/526)) Removed `get_posthoc_label_transform` in
class `ScalarModelBase`. Instead, functions `get_loss_function` and `compute_and_log_metrics` in
`ScalarModelBase` can be implemented to compute the loss and metrics in a task-specific manner.
- ([#554](https://github.com/microsoft/InnerEye-DeepLearning/pull/554)) Removed cryptography from list of invalid
packages in `test_invalid_python_packages` as it is already present as a dependency in our conda environment.

### Deprecated

Expand Down
1 change: 0 additions & 1 deletion Tests/Common/test_environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ def test_invalid_python_packages() -> None:
packages_to_avoid = [
"ca-certificates",
"openssl",
"cryptography",
"ndg-httpsclient",
"pyopenssl",
"urllib3"
Expand Down