Skip to content

Commit e878372

Browse files
authored
Update crf.py (#101)
1 parent 8c451d1 commit e878372

File tree

1 file changed

+3
-3
lines changed
  • napari_cellseg3d/code_models

1 file changed

+3
-3
lines changed

napari_cellseg3d/code_models/crf.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Implements the CRF post-processing step for the W-Net.
1+
"""Implements the CRF post-processing step for the WNet3D.
22
33
The CRF requires the following parameters:
44
@@ -31,8 +31,8 @@
3131
if not CRF_INSTALLED:
3232
logger.info(
3333
"pydensecrf not installed, CRF post-processing will not be available. "
34-
"Please install by running : pip install pydensecrf@git+https://github.com/lucasb-eyer/pydensecrf.git#egg=master"
35-
"This is not a hard requirement, you do not need it to install it unless you want to use the CRF post-processing step."
34+
"Please install by running : pip install pydensecrf "
35+
"This is not a hard requirement, you do not need it to install it unless you want to use the CRF post-processing step. "
3636
)
3737
else:
3838
import pydensecrf.densecrf as dcrf

0 commit comments

Comments
 (0)