We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 843479e commit 3467e7bCopy full SHA for 3467e7b
2 files changed
stroke_segmentor/__init__.py
@@ -1,3 +1,5 @@
1
from loguru import logger
2
3
logger.disable("stroke_segmentor")
4
+
5
+from stroke_segmentor.inferer import Inferer # noqa: F401
stroke_segmentor/inferer.py
@@ -15,14 +15,6 @@ class Inferer:
15
Handles inference for stroke segmentation using DWI and ADC images.
16
This class wraps a model handler to perform inference on given images and can optionally
17
save the resulting segmentation mask to disk.
18
-
19
- Basic usage:
20
- ```
21
- .. code-block:: python
22
23
- inferer = Inferer()
24
- prediction = inferer.infer(adc_path, dwi_path, segmentation_path)
25
26
"""
27
28
def __init__(
0 commit comments