File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 33# SPDX-License-Identifier: MIT
44"""Version information for shell."""
55
6- __version__ = "0.3.1 "
6+ __version__ = "0.3.2 "
Original file line number Diff line number Diff line change @@ -1689,6 +1689,7 @@ def infer_omero_wsi(
16891689 save_eho = save_eho ,
16901690 output_path = output_path ,
16911691 tile_overlap = tile_overlap ,
1692+ roi_size = inference_tile_size ,
16921693 sw_overlap = sw_overlap ,
16931694 num_fetch_workers = num_fetch_workers ,
16941695 )
@@ -1736,6 +1737,7 @@ def _run_pipeline(
17361737 save_eho : str | None ,
17371738 output_path : str ,
17381739 tile_overlap : int ,
1740+ roi_size : int ,
17391741 sw_overlap : float ,
17401742 num_fetch_workers : int = 4 ,
17411743) -> np .ndarray :
@@ -1842,6 +1844,7 @@ def _run_pipeline(
18421844 tile_eho ,
18431845 model ,
18441846 device ,
1847+ roi_size = (roi_size , roi_size ),
18451848 overlap = sw_overlap ,
18461849 )
18471850 del tile_eho
Original file line number Diff line number Diff line change 4040# ---------------------------------------------------------------------------
4141# Default inference parameters
4242# ---------------------------------------------------------------------------
43- VAL_ROI_SIZE : tuple [int , int ] = (512 , 512 )
43+ VAL_ROI_SIZE : tuple [int , int ] = (2048 , 2048 )
4444VAL_SW_BATCH : int = 16
4545VAL_SW_OVERLAP : float = 0.25
4646
You can’t perform that action at this time.
0 commit comments