Organ-aware 3D lesion segmentation dataset and pipeline for abdominal CT analysis (ACM Multimedia 2025 candidate)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910111213 |
- from monai.bundle import ConfigParser
-
- config_path = "monai_wholeBody_ct_segmentation/configs/inference.json"
-
- parser = ConfigParser()
- parser.read_config(config_path)
-
- evaluator = parser.get_parsed_content("evaluator")
-
- try:
- evaluator.run()
- except Exception as e:
- print(f"⚠️ خطا در اجرای evaluator: {e}")
|