Skip to content
Open
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: 1 addition & 1 deletion vision/medical_imaging/3d-unet-kits19/base_SUT.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import inference_utils as infu

from kits_QSL import get_kits_QSL
from global_vars import *
from global_vars import ROI_SHAPE, SLIDE_OVERLAP_FACTOR


class BASE_3DUNET_SUT:
Expand Down
2 changes: 1 addition & 1 deletion vision/medical_imaging/3d-unet-kits19/inference_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
import time
from scipy import signal

from global_vars import *
from global_vars import ROI_SHAPE, SLIDE_OVERLAP_FACTOR

__doc__ = """
Collection of utilities 3D UNet MLPerf-Inference reference model uses.
Expand Down
2 changes: 1 addition & 1 deletion vision/medical_imaging/3d-unet-kits19/preprocess.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
from scipy.ndimage.interpolation import zoom
from pathlib import Path

from global_vars import *
from global_vars import CALIB_CASES, TARGET_CASES, MEAN_VAL, STDDEV_VAL, MIN_CLIP_VAL, MAX_CLIP_VAL, PADDING_VAL, TARGET_SPACING, ROI_SHAPE, SLIDE_OVERLAP_FACTOR, ROI_SHAPE, CHECKSUM_CALIB_FILE, CHECKSUM_INFER_FILE


__doc__ = """
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# limitations under the License.


from global_vars import *
from global_vars import ROI_SHAPE
from pathlib import Path
import torch
import argparse
Expand Down
Loading