File size: 18,674 Bytes
d7b4cbb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 |
# Copyright (c) MONAI Consortium
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from __future__ import annotations
import logging
import os
import pickle
import subprocess
import sys
from copy import deepcopy
from numbers import Number
from typing import Any, cast
import numpy as np
import torch
from monai.auto3dseg import Algo
from monai.bundle.config_parser import ConfigParser
from monai.bundle.utils import ID_SEP_KEY
from monai.config import PathLike
from monai.data.meta_tensor import MetaTensor
from monai.transforms import CropForeground, ToCupy
from monai.utils import min_version, optional_import, run_cmd
__all__ = [
"get_foreground_image",
"get_foreground_label",
"get_label_ccp",
"concat_val_to_np",
"concat_multikeys_to_dict",
"datafold_read",
"verify_report_format",
"algo_to_pickle",
"algo_from_pickle",
]
measure_np, has_measure = optional_import("skimage.measure", "0.14.2", min_version)
cp, has_cp = optional_import("cupy")
def get_foreground_image(image: MetaTensor) -> np.ndarray:
"""
Get a foreground image by removing all-zero rectangles on the edges of the image
Note for the developer: update select_fn if the foreground is defined differently.
Args:
image: ndarray image to segment.
Returns:
ndarray of foreground image by removing all-zero edges.
Notes:
the size of the output is smaller than the input.
"""
copper = CropForeground(select_fn=lambda x: x > 0, allow_smaller=True)
image_foreground = copper(image)
return cast(np.ndarray, image_foreground)
def get_foreground_label(image: MetaTensor, label: MetaTensor) -> MetaTensor:
"""
Get foreground image pixel values and mask out the non-labeled area.
Args
image: ndarray image to segment.
label: ndarray the image input and annotated with class IDs.
Returns:
1D array of foreground image with label > 0
"""
label_foreground = MetaTensor(image[label > 0])
return label_foreground
def get_label_ccp(mask_index: MetaTensor, use_gpu: bool = True) -> tuple[list[Any], int]:
"""
Find all connected components and their bounding shape. Backend can be cuPy/cuCIM or Numpy
depending on the hardware.
Args:
mask_index: a binary mask.
use_gpu: a switch to use GPU/CUDA or not. If GPU is unavailable, CPU will be used
regardless of this setting.
"""
skimage, has_cucim = optional_import("cucim.skimage")
shape_list = []
if mask_index.device.type == "cuda" and has_cp and has_cucim and use_gpu:
mask_cupy = ToCupy()(mask_index.short())
labeled = skimage.measure.label(mask_cupy)
vals = cp.unique(labeled[cp.nonzero(labeled)])
for ncomp in vals:
comp_idx = cp.argwhere(labeled == ncomp)
comp_idx_min = cp.min(comp_idx, axis=0).tolist()
comp_idx_max = cp.max(comp_idx, axis=0).tolist()
bbox_shape = [comp_idx_max[i] - comp_idx_min[i] + 1 for i in range(len(comp_idx_max))]
shape_list.append(bbox_shape)
ncomponents = len(vals)
del mask_cupy, labeled, vals, comp_idx, ncomp
cp.get_default_memory_pool().free_all_blocks()
elif has_measure:
labeled, ncomponents = measure_np.label(mask_index.data.cpu().numpy(), background=-1, return_num=True)
for ncomp in range(1, ncomponents + 1):
comp_idx = np.argwhere(labeled == ncomp)
comp_idx_min = np.min(comp_idx, axis=0).tolist()
comp_idx_max = np.max(comp_idx, axis=0).tolist()
bbox_shape = [comp_idx_max[i] - comp_idx_min[i] + 1 for i in range(len(comp_idx_max))]
shape_list.append(bbox_shape)
else:
raise RuntimeError("Cannot find one of the following required dependencies: {cuPy+cuCIM} or {scikit-image}")
return shape_list, ncomponents
def concat_val_to_np(
data_list: list[dict],
fixed_keys: list[str | int],
ragged: bool | None = False,
allow_missing: bool | None = False,
**kwargs: Any,
) -> np.ndarray:
"""
Get the nested value in a list of dictionary that shares the same structure.
Args:
data_list: a list of dictionary {key1: {key2: np.ndarray}}.
fixed_keys: a list of keys that records to path to the value in the dict elements.
ragged: if True, numbers can be in list of lists or ragged format so concat mode needs change.
allow_missing: if True, it will return a None if the value cannot be found.
Returns:
nd.array of concatenated array.
"""
np_list: list[np.ndarray | None] = []
for data in data_list:
parser = ConfigParser(data)
for i, key in enumerate(fixed_keys):
fixed_keys[i] = str(key)
val: Any
val = parser.get(ID_SEP_KEY.join(fixed_keys)) # type: ignore
if val is None:
if allow_missing:
np_list.append(None)
else:
raise AttributeError(f"{fixed_keys} is not nested in the dictionary")
elif isinstance(val, list):
np_list.append(np.array(val))
elif isinstance(val, (torch.Tensor, MetaTensor)):
np_list.append(val.cpu().numpy())
elif isinstance(val, np.ndarray):
np_list.append(val)
elif isinstance(val, Number):
np_list.append(np.array(val))
else:
raise NotImplementedError(f"{val.__class__} concat is not supported.")
if allow_missing:
np_list = [x for x in np_list if x is not None]
if len(np_list) == 0:
return np.array([0])
elif ragged:
return np.concatenate(np_list, **kwargs) # type: ignore
else:
return np.concatenate([np_list], **kwargs)
def concat_multikeys_to_dict(
data_list: list[dict], fixed_keys: list[str | int], keys: list[str], zero_insert: bool = True, **kwargs: Any
) -> dict[str, np.ndarray]:
"""
Get the nested value in a list of dictionary that shares the same structure iteratively on all keys.
It returns a dictionary with keys with the found values in nd.ndarray.
Args:
data_list: a list of dictionary {key1: {key2: np.ndarray}}.
fixed_keys: a list of keys that records to path to the value in the dict elements.
keys: a list of string keys that will be iterated to generate a dict output.
zero_insert: insert a zero in the list so that it can find the value in element 0 before getting the keys
flatten: if True, numbers are flattened before concat.
Returns:
a dict with keys - nd.array of concatenated array pair.
"""
ret_dict = {}
for key in keys:
addon: list[str | int] = [0, key] if zero_insert else [key]
val = concat_val_to_np(data_list, fixed_keys + addon, **kwargs)
ret_dict.update({key: val})
return ret_dict
def datafold_read(datalist: str | dict, basedir: str, fold: int = 0, key: str = "training") -> tuple[list, list]:
"""
Read a list of data dictionary `datalist`
Args:
datalist: the name of a JSON file listing the data, or a dictionary.
basedir: directory of image files.
fold: which fold to use (0..1 if in training set).
key: usually 'training' , but can try 'validation' or 'testing' to get the list data without labels (used in challenges).
Returns:
A tuple of two arrays (training, validation).
"""
if isinstance(datalist, str):
json_data = ConfigParser.load_config_file(datalist)
else:
json_data = datalist
dict_data = deepcopy(json_data[key])
for d in dict_data:
for k, _ in d.items():
if isinstance(d[k], list):
d[k] = [os.path.join(basedir, iv) for iv in d[k]]
elif isinstance(d[k], str):
d[k] = os.path.join(basedir, d[k]) if len(d[k]) > 0 else d[k]
tr = []
val = []
for d in dict_data:
if "fold" in d and d["fold"] == fold:
val.append(d)
else:
tr.append(d)
return tr, val
def verify_report_format(report: dict, report_format: dict) -> bool:
"""
Compares the report and the report_format that has only keys.
Args:
report: dict that has real values.
report_format: dict that only has keys and list-nested value.
"""
for k_fmt, v_fmt in report_format.items():
if k_fmt not in report:
return False
v = report[k_fmt]
if isinstance(v_fmt, list) and isinstance(v, list):
if len(v_fmt) != 1:
raise UserWarning("list length in report_format is not 1")
if len(v_fmt) > 0 and len(v) > 0:
return verify_report_format(v[0], v_fmt[0])
else:
return False
return True
def algo_to_pickle(algo: Algo, template_path: PathLike | None = None, **algo_meta_data: Any) -> str:
"""
Export the Algo object to pickle file.
Args:
algo: Algo-like object.
template_path: a str path that is needed to be added to the sys.path to instantiate the class.
algo_meta_data: additional keyword to save into the dictionary, for example, model training info
such as acc/best_metrics
Returns:
filename of the pickled Algo object
"""
data = {"algo_bytes": pickle.dumps(algo), "template_path": str(template_path)}
pkl_filename = os.path.join(algo.get_output_path(), "algo_object.pkl")
for k, v in algo_meta_data.items():
data.update({k: v})
data_bytes = pickle.dumps(data)
with open(pkl_filename, "wb") as f_pi:
f_pi.write(data_bytes)
return pkl_filename
def algo_from_pickle(pkl_filename: str, template_path: PathLike | None = None, **kwargs: Any) -> Any:
"""
Import the Algo object from a pickle file.
Args:
pkl_filename: the name of the pickle file.
template_path: a folder containing files to instantiate the Algo. Besides the `template_path`,
this function will also attempt to use the `template_path` saved in the pickle file and a directory
named `algorithm_templates` in the parent folder of the folder containing the pickle file.
Returns:
algo: the Algo object saved in the pickle file.
algo_meta_data: additional keyword saved in the pickle file, for example, acc/best_metrics.
Raises:
ValueError if the pkl_filename does not contain a dict, or the dict does not contain `algo_bytes`.
ModuleNotFoundError if it is unable to instantiate the Algo class.
"""
with open(pkl_filename, "rb") as f_pi:
data_bytes = f_pi.read()
data = pickle.loads(data_bytes)
if not isinstance(data, dict):
raise ValueError(f"the data object is {data.__class__}. Dict is expected.")
if "algo_bytes" not in data:
raise ValueError(f"key [algo_bytes] not found in {data}. Unable to instantiate.")
algo_bytes = data.pop("algo_bytes")
algo_template_path = data.pop("template_path", None)
template_paths_candidates: list[str] = []
if os.path.isdir(str(template_path)):
template_paths_candidates.append(os.path.abspath(str(template_path)))
template_paths_candidates.append(os.path.abspath(os.path.join(str(template_path), "..")))
if os.path.isdir(str(algo_template_path)):
template_paths_candidates.append(os.path.abspath(algo_template_path))
template_paths_candidates.append(os.path.abspath(os.path.join(algo_template_path, "..")))
pkl_dir = os.path.dirname(pkl_filename)
algo_template_path_fuzzy = os.path.join(pkl_dir, "..", "algorithm_templates")
if os.path.isdir(algo_template_path_fuzzy):
template_paths_candidates.append(os.path.abspath(algo_template_path_fuzzy))
if len(template_paths_candidates) == 0:
# no template_path provided or needed
algo = pickle.loads(algo_bytes)
algo.template_path = None
else:
for i, p in enumerate(template_paths_candidates):
try:
sys.path.append(p)
algo = pickle.loads(algo_bytes)
break
except ModuleNotFoundError as not_found_err:
logging.debug(f"Folder {p} doesn't contain the Algo templates for Algo instantiation.")
sys.path.pop()
if i == len(template_paths_candidates) - 1:
raise ValueError(
f"Failed to instantiate {pkl_filename} with {template_paths_candidates}"
) from not_found_err
algo.template_path = p
if os.path.abspath(pkl_dir) != os.path.abspath(algo.get_output_path()):
logging.debug(f"{algo.get_output_path()} is changed. Now override the Algo output_path with: {pkl_dir}.")
algo.output_path = pkl_dir
algo_meta_data = {}
for k, v in data.items():
algo_meta_data.update({k: v})
return algo, algo_meta_data
def list_to_python_fire_arg_str(args: list) -> str:
"""
Convert a list of arguments to a string that can be used in python-fire.
Args:
args: the list of arguments.
Returns:
the string that can be used in python-fire.
"""
args_str = ",".join([str(arg) for arg in args])
return f"'{args_str}'"
def check_and_set_optional_args(params: dict) -> str:
"""convert `params` into '--key_1=value_1 --key_2=value_2 ...'"""
cmd_mod_opt = ""
for k, v in params.items():
if isinstance(v, dict):
raise ValueError("Nested dict is not supported.")
elif isinstance(v, list):
v = list_to_python_fire_arg_str(v)
cmd_mod_opt += f" --{k}={v}"
return cmd_mod_opt
def _prepare_cmd_default(cmd: str, cmd_prefix: str | None = None, **kwargs: Any) -> str:
"""
Prepare the command for subprocess to run the script with the given arguments.
Args:
cmd: the command or script to run in the distributed job.
cmd_prefix: the command prefix to run the script, e.g., "python", "python -m", "python3", "/opt/conda/bin/python3.8 ".
kwargs: the keyword arguments to be passed to the script.
Returns:
the command to run with ``subprocess``.
Examples:
To prepare a subprocess command
"python train.py run -k --config 'a,b'", the function can be called as
- _prepare_cmd_default("train.py run -k", config=['a','b'])
- _prepare_cmd_default("train.py run -k --config 'a,b'")
"""
params = kwargs.copy()
if not cmd_prefix or "None" in cmd_prefix: # defaulting to 'python'
cmd_prefix = "python"
if not cmd_prefix.endswith(" "):
cmd_prefix += " " # ensure a space after the command prefix so that the script can be appended
return cmd_prefix + cmd + check_and_set_optional_args(params)
def _prepare_cmd_torchrun(cmd: str, **kwargs: Any) -> str:
"""
Prepare the command for multi-gpu/multi-node job execution using torchrun.
Args:
cmd: the command or script to run in the distributed job.
kwargs: the keyword arguments to be passed to the script.
Returns:
the command to append to ``torchrun``
Examples:
For command "torchrun --nnodes=1 --nproc_per_node=8 train.py run -k --config 'a,b'",
it only prepares command after the torchrun arguments, i.e., "train.py run -k --config 'a,b'".
The function can be called as
- _prepare_cmd_torchrun("train.py run -k", config=['a','b'])
- _prepare_cmd_torchrun("train.py run -k --config 'a,b'")
"""
params = kwargs.copy()
return cmd + check_and_set_optional_args(params)
def _prepare_cmd_bcprun(cmd: str, cmd_prefix: str | None = None, **kwargs: Any) -> str:
"""
Prepare the command for distributed job running using bcprun.
Args:
script: the script to run in the distributed job.
cmd_prefix: the command prefix to run the script, e.g., "python".
kwargs: the keyword arguments to be passed to the script.
Returns:
The command to run the script in the distributed job.
Examples:
For command "bcprun -n 2 -p 8 -c python train.py run -k --config 'a,b'",
it only prepares command after the bcprun arguments, i.e., "train.py run -k --config 'a,b'".
the function can be called as
- _prepare_cmd_bcprun("train.py run -k", config=['a','b'], n=2, p=8)
- _prepare_cmd_bcprun("train.py run -k --config 'a,b'", n=2, p=8)
"""
return _prepare_cmd_default(cmd, cmd_prefix=cmd_prefix, **kwargs)
def _run_cmd_torchrun(cmd: str, **kwargs: Any) -> subprocess.CompletedProcess:
"""
Run the command with torchrun.
Args:
cmd: the command to run. Typically it is prepared by ``_prepare_cmd_torchrun``.
kwargs: the keyword arguments to be passed to the ``torchrun``.
Return:
the return code of the subprocess command.
"""
params = kwargs.copy()
cmd_list = cmd.split()
# append arguments to the command list
torchrun_list = ["torchrun"]
required_args = ["nnodes", "nproc_per_node"]
for arg in required_args:
if arg not in params:
raise ValueError(f"Missing required argument {arg} for torchrun.")
torchrun_list += [f"--{arg}", str(params.pop(arg))]
torchrun_list += cmd_list
return run_cmd(torchrun_list, run_cmd_verbose=True, **params)
def _run_cmd_bcprun(cmd: str, **kwargs: Any) -> subprocess.CompletedProcess:
"""
Run the command with bcprun.
Args:
cmd: the command to run. Typically it is prepared by ``_prepare_cmd_bcprun``.
kwargs: the keyword arguments to be passed to the ``bcprun``.
Returns:
the return code of the subprocess command.
"""
params = kwargs.copy()
cmd_list = ["bcprun"]
required_args = ["n", "p"]
for arg in required_args:
if arg not in params:
raise ValueError(f"Missing required argument {arg} for bcprun.")
cmd_list += [f"-{arg}", str(params.pop(arg))]
cmd_list.extend(["-c", cmd])
return run_cmd(cmd_list, run_cmd_verbose=True, **params)
|