Skip to content
Snippets Groups Projects
Commit 8e7ce463 authored by Daniel CARRON's avatar Daniel CARRON :b: Committed by André Anjos
Browse files

[segmentation.models] Fix docstrings

parent d4d28b03
No related branches found
No related tags found
1 merge request!46Create common library
# SPDX-FileCopyrightText: Copyright © 2024 Idiap Research Institute <contact@idiap.ch> # SPDX-FileCopyrightText: Copyright © 2024 Idiap Research Institute <contact@idiap.ch>
# #
# SPDX-License-Identifier: GPL-3.0-or-later # SPDX-License-Identifier: GPL-3.0-or-later
"""Little W-Net for image segmentation.
The Little W-Net architecture contains roughly around 70k parameters and """U-Net for image segmentation.
closely matches (or outperforms) other more complex techniques.
Reference: [GALDRAN-2020]_ U-Net is a convolutional neural network that was developed for biomedical image
segmentation at the Computer Science Department of the University of Freiburg,
Germany. The network is based on the fully convolutional network (FCN) and its
architecture was modified and extended to work with fewer training images and
to yield more precise segmentations.
Reference: [RONNEBERGER-2015]_
""" """
from mednet.libs.segmentation.engine.adabound import AdaBound from mednet.libs.segmentation.engine.adabound import AdaBound
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment