Skip to content
Merged
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
6 changes: 3 additions & 3 deletions napari_cellseg3d/code_models/crf.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Implements the CRF post-processing step for the W-Net.
"""Implements the CRF post-processing step for the WNet3D.

The CRF requires the following parameters:

Expand Down Expand Up @@ -31,8 +31,8 @@
if not CRF_INSTALLED:
logger.info(
"pydensecrf not installed, CRF post-processing will not be available. "
"Please install by running : pip install pydensecrf@git+https://github.com/lucasb-eyer/pydensecrf.git#egg=master"
"This is not a hard requirement, you do not need it to install it unless you want to use the CRF post-processing step."
"Please install by running : pip install pydensecrf "
"This is not a hard requirement, you do not need it to install it unless you want to use the CRF post-processing step. "
)
else:
import pydensecrf.densecrf as dcrf
Expand Down
Loading