One of the main challenges in artificial intelligence for the researchers is to understands how model predictions works. Many contributions has been made, especially GRAD-CAM++. Grad-CAM++ give a visual representation of the keys features responsible of the classification, and give human-level understanding of the model prediction. Despite its advantages, GRAD-CAM ++ is not initially design for time series
The program give a GRAD-CAM ++ visualisation for time series
Clone the repo
sh git clone https://github.com/marcusnk237/Gradcam_plus_plus.git
compute_cam_1d_output (model, data , layer_name , N)
Arguments:
> - model : The model trained
> - data : The data sample
> - layer_name : The last layer of the feature extraction part of the model. Usually, it is the last layer before the Flattening operation.
> - N : data length
-
Project Link: https://github.com/marcusnk237/Gradcam_plus_plus
The authors of the original article about GRAD-CAM++