Class | Description |
---|---|
AbstractCNNSaliencyMapGenerator |
Generic class for a saliency map generator.
|
AbstractCNNSaliencyMapWrapper |
WEKA Wrapper for a Saliency Map Generator (e.g., ScoreCAM).
|
Gradient |
There are a number of defined gradient types (look at the static fields),
but you can create any gradient you like by using either of the following functions:
public static Color[] createMultiGradient(Color[] colors, int numSteps)
public static Color[] createGradient(Color one, Color two, int numSteps)
You can then assign an arbitrary Color[] object to the HeatMap as follows:
|
ScoreCAM |
Implementation of the ScoreCAM saliency map generation method.
|
WekaScoreCAM |
WEKA Wrapper for the Deeplearning4j ScoreCAM implementation.
|