care_algorithm_model
CARE algorithm configuration.
CAREAlgorithm
#
Bases: UNetBasedAlgorithm
CARE algorithm configuration.
Attributes:
Name | Type | Description |
---|---|---|
algorithm | care | CARE Algorithm name. |
loss | {mae, mse} | CARE-compatible loss function. |
Source code in src/careamics/config/algorithms/care_algorithm_model.py
algorithm = 'care'
class-attribute
instance-attribute
#
CARE Algorithm name.
loss = 'mae'
class-attribute
instance-attribute
#
CARE-compatible loss function.
model
instance-attribute
#
UNet without a final activation function and without the n2v2
modifications.
get_algorithm_citations()
#
Return a list of citation entries of the current algorithm.
This is used to generate the model description for the BioImage Model Zoo.
Returns:
Type | Description |
---|---|
List[CiteEntry] | List of citation entries. |
Source code in src/careamics/config/algorithms/care_algorithm_model.py
get_algorithm_description()
#
Get the algorithm description.
Returns:
Type | Description |
---|---|
str | Algorithm description. |
get_algorithm_friendly_name()
#
Get the algorithm friendly name.
Returns:
Type | Description |
---|---|
str | Friendly name of the algorithm. |
get_algorithm_keywords()
#
Get algorithm keywords.
Returns:
Type | Description |
---|---|
list[str] | List of keywords. |
Source code in src/careamics/config/algorithms/care_algorithm_model.py
get_algorithm_references()
#
Get the algorithm references.
This is used to generate the README of the BioImage Model Zoo export.
Returns:
Type | Description |
---|---|
str | Algorithm references. |