Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update crf.py #101

Merged
merged 2 commits into from
Dec 16, 2024
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