Skip to content

Commit 809b8d2

Browse files
Rename pretrained models and move to seperate tag + Remove TTA (#1114)
Signed-off-by: Sachidanand Alle <[email protected]> Signed-off-by: Sachidanand Alle <[email protected]>
1 parent 91c48c4 commit 809b8d2

File tree

24 files changed

+37
-589
lines changed

24 files changed

+37
-589
lines changed

monailabel/interfaces/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323

2424
class TaskConfig(metaclass=ABCMeta):
25-
PRE_TRAINED_PATH = "https://github.com/Project-MONAI/MONAILabel/releases/download/data"
25+
PRE_TRAINED_PATH = "https://github.com/Project-MONAI/MONAILabel/releases/download/pretrained"
2626
NGC_PATH = "https://api.ngc.nvidia.com/v2/models/nvidia/med"
2727

2828
def __init__(self):

monailabel/tasks/activelearning/tta.py

Lines changed: 0 additions & 25 deletions
This file was deleted.

monailabel/tasks/infer/bundle.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def __init__(
9393

9494
self.bundle_config = ConfigParser()
9595
self.bundle_config.read_config(os.path.join(path, "configs", config_paths[0]))
96-
self.bundle_config.config.update({self.const.key_bundle_root(): path})
96+
self.bundle_config.config.update({self.const.key_bundle_root(): path}) # type: ignore
9797
if self.dropout > 0:
9898
self.bundle_config["network_def"]["dropout"] = self.dropout
9999

0 commit comments

Comments
 (0)