class documentation
class ModalityCombinor:
Utility class that defines and helps to select the various methods for combining diagnoses from different modalities.
Static Method | logical_ |
Logical AND combination method. |
Static Method | logical_ |
Use the logical OR to determine combined involvement. |
Static Method | max |
Combine diagnoses by computing true involvement is the most likely, given the provided set of observations. |
Static Method | rank |
Combine diagnoses by trusting the one with the highest spcificity/sensitivity. |
Method | __init__ |
Initialize the helper class with the name of the method to combine modalities. |
Method | combine |
Choose the method to combine the diagnoses and perform the combination using the stored values for sensitivity and specificity. |
Instance Variable | method |
Undocumented |
Instance Variable | sensitivities |
Undocumented |
Instance Variable | specificities |
Undocumented |
Logical AND combination method.
Parameters | |
values:Tuple[ | Undocumented |
specificities:Tuple[ | Undocumented |
sensitivities:Tuple[ | Undocumented |
Returns | |
bool | Undocumented |
Use the logical OR to determine combined involvement.
Parameters | |
values:Tuple[ | Undocumented |
specificities:Tuple[ | Undocumented |
sensitivities:Tuple[ | Undocumented |
Returns | |
bool | Undocumented |
Combine diagnoses by computing true involvement is the most likely, given the provided set of observations.
Parameters | |
values:Tuple[ | Undocumented |
specificities:Tuple[ | Undocumented |
sensitivities:Tuple[ | Undocumented |
Returns | |
bool | Undocumented |
Combine diagnoses by trusting the one with the highest spcificity/sensitivity.
Parameters | |
values:Tuple[ | Undocumented |
specificities:Tuple[ | Undocumented |
sensitivities:Tuple[ | Undocumented |
Returns | |
bool | Undocumented |
Initialize the helper class with the name of the method to combine modalities.
Parameters | |
method:str | Undocumented |