Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
58b0998
Add coronary artery segmentation bundle (CoronSegmentator)
Foxconn-bgroup-aidd Jul 16, 2025
2e858aa
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jul 16, 2025
23ca47c
1. Add unit_test scripts 2. Add download.py 3. Update large_file.yml …
Foxconn-bgroup-aidd Jul 25, 2025
9d1626f
Merge branch '760-CoronSegmentator' of github.com:Foxconn-bgroup-aidd…
Foxconn-bgroup-aidd Jul 25, 2025
c8b3ad0
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jul 25, 2025
009a68f
Merge branch '760-CoronSegmentator' of github.com:Foxconn-bgroup-aidd…
Foxconn-bgroup-aidd Jul 25, 2025
8f3bc68
Restore deleted unit test: test_brain_image_synthesis_latent_diffusio…
Foxconn-bgroup-aidd Jul 28, 2025
0074aaf
Restore deleted test_brain_image_synthesis_latent_diffusion_model.py
Foxconn-bgroup-aidd Jul 28, 2025
68cc018
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Jul 28, 2025
e271661
Merge branch 'dev' into 760-CoronSegmentator
yiheng-wang-nv Aug 15, 2025
38e288b
Update metadata.json
Foxconn-bgroup-aidd Sep 8, 2025
31f85ef
Update inference.json
Foxconn-bgroup-aidd Sep 8, 2025
02ca938
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Sep 8, 2025
ca0e692
Update metadata.json
Foxconn-bgroup-aidd Sep 8, 2025
3dc31fd
Update metadata.json
Foxconn-bgroup-aidd Sep 8, 2025
f387a67
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Sep 8, 2025
b3eacf3
Merge branch 'dev' into 760-CoronSegmentator
yiheng-wang-nv Sep 28, 2025
4234964
Apply isort import fixes
Foxconn-bgroup-aidd Oct 7, 2025
f34535c
1.Revise the pytorch version in configs/metadata.json 2.Pass the isor…
Foxconn-bgroup-aidd Oct 8, 2025
ebde3a9
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 8, 2025
ab71da4
1.Revise the package version in configs/metadata.json 2.Pass the flak…
Foxconn-bgroup-aidd Oct 16, 2025
ae42eee
Merge branch 'dev' into 760-CoronSegmentator
yiheng-wang-nv Oct 30, 2025
369f8e5
Update metadata version
Foxconn-bgroup-aidd Nov 25, 2025
685b4b1
Merge branch 'dev' into 760-CoronSegmentator
ericspod Dec 1, 2025
3c7c42e
Only preserve the coronary artery segmentation module to solve the pr…
peter-ty-lin Dec 12, 2025
1d7fbac
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Dec 12, 2025
f807c07
Merge branch 'dev' into 760-CoronSegmentator
ericspod Apr 27, 2026
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
83 changes: 83 additions & 0 deletions ci/unit_tests/test_coronaryArtery_ct_segmentation.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
#!/bin/python
# 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.

import os
import shutil
import sys
import tempfile
import unittest
from pathlib import Path

import nibabel as nib
import numpy as np
from monai.bundle import ConfigWorkflow
from parameterized import parameterized
from utils import check_workflow

ROOT = Path(__file__).parent.parent.parent
bundle_path = os.path.join(ROOT, "models", "CoronSegmentator")

if bundle_path not in sys.path:
sys.path.insert(0, bundle_path)
print(f"Added to sys.path: {bundle_path}")

TEST_CASE_1 = [{"bundle_root": r"models/CoronSegmentator"}] # inference


def test_order(test_name1, test_name2):
def get_order(name):
if "train" in name:
return 1
if "eval" in name:
return 2
if "infer" in name:
return 3
return 4

return get_order(test_name1) - get_order(test_name2)


class TestCoronaryArteryCTSeg(unittest.TestCase):
def setUp(self):
self.dataset_dir = tempfile.mkdtemp()
dataset_size = 10
input_shape = (128, 128, 128)
for s in range(dataset_size):
test_image = np.random.randint(low=-1024, high=1000, size=input_shape).astype(np.int8)
test_label = np.random.randint(low=0, high=1, size=input_shape).astype(np.int8)
Comment on lines +55 to +56
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🔴 Critical

Both synthetic image dtype and label range are buggy.

  • Line 55: np.int8 only holds values in [-128, 127], but you sample in [-1024, 1000). The cast silently wraps around, producing meaningless CT intensities (e.g., -1024 → 0, 999 → -25). Use np.int16 for HU-scale CT.
  • Line 56: np.random.randint(low=0, high=1, ...) never produces a 1 because high is exclusive; every label volume is all zeros. Use high=2 for binary labels.
🐛 Proposed fix
-            test_image = np.random.randint(low=-1024, high=1000, size=input_shape).astype(np.int8)
-            test_label = np.random.randint(low=0, high=1, size=input_shape).astype(np.int8)
+            test_image = np.random.randint(low=-1024, high=1000, size=input_shape).astype(np.int16)
+            test_label = np.random.randint(low=0, high=2, size=input_shape).astype(np.int8)
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
test_image = np.random.randint(low=-1024, high=1000, size=input_shape).astype(np.int8)
test_label = np.random.randint(low=0, high=1, size=input_shape).astype(np.int8)
test_image = np.random.randint(low=-1024, high=1000, size=input_shape).astype(np.int16)
test_label = np.random.randint(low=0, high=2, size=input_shape).astype(np.int8)
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@ci/unit_tests/test_coronaryArtery_ct_segmentation.py` around lines 55 - 56,
The synthetic test data is invalid: fix creation of test_image and test_label by
sampling CT-intensity-range into a dtype that can hold Hounsfield units and
producing true binary labels; specifically change the array dtype for test_image
(variable name test_image) from np.int8 to np.int16 (so values sampled from
low=-1024, high=1000 are represented correctly) and change the randint call for
test_label (variable name test_label) to use high=2 so it can generate 0 and 1
labels rather than all zeros.

image_filename = os.path.join(self.dataset_dir, f"image_{s}.nii.gz")
label_filename = os.path.join(self.dataset_dir, f"label_{s}.nii.gz")
nib.save(nib.Nifti1Image(test_image, np.eye(4)), image_filename)
nib.save(nib.Nifti1Image(test_label, np.eye(4)), label_filename)

def tearDown(self):
shutil.rmtree(self.dataset_dir)

@parameterized.expand([TEST_CASE_1])
def test_infer_config(self, override):
override["dataset_dir"] = self.dataset_dir
bundle_root = override["bundle_root"]

inferrer = ConfigWorkflow(
workflow_type="infer",
config_file=Path(bundle_root) / "configs/inference.json",
logging_file=Path(bundle_root) / "configs/logging.conf",
meta_file=Path(bundle_root) / "configs/metadata.json",
**override,
)
check_workflow(inferrer, check_properties=True)
Comment on lines +65 to +77
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Confirm what check_workflow does and whether ConfigWorkflow.run is being short-circuited anywhere.
rg -nP -C2 'check_workflow\b' ci/unit_tests/utils.py
rg -nP -C3 'class CoroSegmentatorPipeline\b|def run\(self\)' models/CoronSegmentator/scripts/heart_digital_twin.py
# Look for similar bundles' tests that mock heavy steps to see the established pattern in this repo.
rg -nP -C2 'mock\.|patch\(|MagicMock' ci/unit_tests | head -n 60

Repository: Project-MONAI/model-zoo

Length of output: 669


🏁 Script executed:

# Get the full check_workflow function
rg -nP -A 20 'def check_workflow\(workflow: ConfigWorkflow' ci/unit_tests/utils.py

Repository: Project-MONAI/model-zoo

Length of output: 479


🏁 Script executed:

# Get the full run method of CoroSegmentatorPipeline
rg -nP -A 50 'def run\(self\):' models/CoronSegmentator/scripts/heart_digital_twin.py

Repository: Project-MONAI/model-zoo

Length of output: 1651


🏁 Script executed:

# Check if the test file itself has any mocks or patches
cat -n ci/unit_tests/test_coronaryArtery_ct_segmentation.py

Repository: Project-MONAI/model-zoo

Length of output: 3556


🏁 Script executed:

# Find run_coronary_artery_segmentation and check if it spawns nnUNetv2_predict
rg -nP -A 30 'def run_coronary_artery_segmentation' models/CoronSegmentator/

Repository: Project-MONAI/model-zoo

Length of output: 3029


🏁 Script executed:

# Check for nnUNetv2_predict subprocess calls in the codebase
rg -nP 'nnUNetv2_predict|subprocess\.' models/CoronSegmentator/

Repository: Project-MONAI/model-zoo

Length of output: 1216


🏁 Script executed:

# Look for integration test patterns in the codebase
rg -nP 'integration|@pytest.mark|@unittest' ci/unit_tests/ | grep -i integration | head -20

Repository: Project-MONAI/model-zoo

Length of output: 49


🏁 Script executed:

# Check the inference.json config to see what triggers the pipeline
find models/CoronSegmentator -name "inference.json" -type f -exec head -100 {} \;

Repository: Project-MONAI/model-zoo

Length of output: 752


🏁 Script executed:

# Check if ConfigWorkflow has any special handling for this bundle
rg -nP 'class ConfigWorkflow|def run\(' ci/unit_tests/utils.py

Repository: Project-MONAI/model-zoo

Length of output: 49


🏁 Script executed:

# Look at the scripts module to understand how pipeline is invoked from config
rg -nP 'CoroSegmentatorPipeline' models/CoronSegmentator/

Repository: Project-MONAI/model-zoo

Length of output: 279


Mock/patch heavy operations (download_url and nnUNetv2_predict subprocess) to prevent full-pipeline execution in this unit test.

check_workflow(inferrer, check_properties=True) invokes workflow.run(), which loads inference.json and executes the pipeline:

  1. ConfigWorkflow.run() → instantiates and calls CoroSegmentatorPipeline.run()
  2. CoroSegmentatorPipeline.run() downloads ~hundreds of MB of model weights via download_url() from Google Drive view URLs
  3. run_coronary_artery_segmentation()NNUnetPredictor.run() spawns nnUNetv2_predict subprocess

In CI this will fail because:

  • monai.apps.utils.download_url cannot follow through Google Drive's confirmation tokens for large files
  • nnUNetv2_predict will not be available on PATH
  • Full pipeline execution exhausts test resources

The test has no mocks or patches to prevent this. Recommend mocking download_url and subprocess.run (or stubbing CoroSegmentatorPipeline.run()) so the test validates only the workflow wiring and property check. If full-pipeline coverage is needed, gate it behind an integration-test marker.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@ci/unit_tests/test_coronaryArtery_ct_segmentation.py` around lines 65 - 77,
The test calls check_workflow(inferrer, check_properties=True) which triggers
ConfigWorkflow -> CoroSegmentatorPipeline.run and performs heavy external work
(monai.apps.utils.download_url and NNUnetPredictor.run spawning
nnUNetv2_predict); to fix, patch/mock those external operations in the test so
only wiring is validated: either stub CoroSegmentatorPipeline.run to a no-op or
mock monai.apps.utils.download_url and subprocess.run (or the method
NNUnetPredictor.run) to return successfully without downloading or invoking
nnUNetv2_predict; ensure your mocks target the exact symbols ConfigWorkflow
(test instantiation), CoroSegmentatorPipeline.run, download_url,
NNUnetPredictor.run, and the subprocess invocation name nnUNetv2_predict so the
test runs in CI without performing network or subprocess work.



if __name__ == "__main__":
loader = unittest.TestLoader()
loader.sortTestMethodsUsing = test_order
unittest.main(testLoader=loader)
5 changes: 5 additions & 0 deletions models/CoronSegmentator/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*__pycache__
*zip
.python-version

/env
201 changes: 201 additions & 0 deletions models/CoronSegmentator/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,201 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/

TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION

1. Definitions.

"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.

"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.

"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.

"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.

"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.

"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.

"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).

"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.

"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."

"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.

2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.

3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.

4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:

(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and

(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and

(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and

(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.

You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.

5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.

6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.

7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.

8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.

9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.

END OF TERMS AND CONDITIONS

APPENDIX: How to apply the Apache License to your work.

To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright © 2025 Hon Hai Precision Industry Co.,Ltd. All rights reserved

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.
25 changes: 25 additions & 0 deletions models/CoronSegmentator/configs/inference.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"imports": [
"$import glob"
],
"bundle_root": ".",
"ckpt_dir": "$@bundle_root + '/models'",
"dataset_dir": "",
"data": "$list(sorted(glob.glob(@dataset_dir + '/*.nii.gz')))",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major

@data[0] will raise IndexError when dataset_dir is empty or contains no .nii.gz.

dataset_dir defaults to "" and data is built eagerly from glob.glob(@dataset_dir + '/*.nii.gz'). Then inferer.input_params.inputFile references @data[0], which is evaluated at workflow construction time. Result: just running monai.bundle run --config_file configs/inference.json (without supplying a populated dataset_dir) crashes before run is ever called, and ConfigWorkflow.check_workflow(check_properties=True) from the new unit test will likewise fail unless dataset_dir is overridden with a directory containing NIfTI files.

Consider deferring the lookup, e.g., resolve the input file inside CoroSegmentatorPipeline.run() from dataset_dir, or guard with a default sentinel. At minimum, document the required dataset_dir override prominently.

Also applies to: 15-15

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@models/CoronSegmentator/configs/inference.json` at line 8, The config
currently builds "data" eagerly via "data": "$list(sorted(glob.glob(`@dataset_dir`
+ '/*.nii.gz')))" and then uses `@data`[0] in inferer.input_params.inputFile which
raises IndexError when dataset_dir is empty; change this by deferring or
guarding the lookup: remove the eager `@data`[0] dependency and instead resolve
the input file at runtime inside CoronSegmentatorPipeline.run() (or add a safe
helper that returns a sentinel/default or raises a clear, documented error if no
.nii.gz files are found), update inferer.input_params.inputFile to reference
that runtime-resolved value (or a safe placeholder), and add prominent
documentation in the config comment that dataset_dir must be overridden or
contain NIfTI files so ConfigWorkflow.check_workflow and monai.bundle run do not
crash at construction time.

"output_ext": ".usd",
"output_dir": "$@bundle_root + '/Output'",
"device": "$torch.device('cuda:0' if torch.cuda.is_available() else 'cpu')",
"inferer": {
"_target_": "scripts.heart_digital_twin.CoroSegmentatorPipeline",
"input_params": {
"inputFile": "$@data[0]",
"outputDir": "$@output_dir"
}
},
"dataset": {},
"evaluator": {},
"network_def": {},
"run": [
"$@inferer.run()"
]
}
21 changes: 21 additions & 0 deletions models/CoronSegmentator/configs/logging.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[loggers]
keys=root

[handlers]
keys=consoleHandler

[formatters]
keys=fullFormatter

[logger_root]
level=INFO
handlers=consoleHandler

[handler_consoleHandler]
class=StreamHandler
level=INFO
formatter=fullFormatter
args=(sys.stdout,)

[formatter_fullFormatter]
format=%(asctime)s - %(name)s - %(levelname)s - %(message)s
Loading
Loading