-
请教一下如何将InterpretDL应用到PaddleSeg模型中呢?
-
Your work is excellent, and I have seen the Grad-CAM visualization results you provided. Could you please share the code for the Grad-CAM visualization? I would be very grateful.
-
import numpy as np
import tensorflow as tf
from tf_explain.core.grad_cam import GradCAM
import matplotlib.pyplot as plt
# Initialize Grad-CAM explainer
explainer = GradCAM()
# Specify the la…
-
In the grad-cam code for Yolov8, why is the layer specified as 5 layers? In the code; 'layer': [10, 12, 14, 16, 18])
Normally it is processed according to the last convulusion layer. What are the me…
-
Hello, I used this YOLO version before on my thesis, and now I want to explain the model using Grad CAM to produce a heatmap.
I modified the YOLO.py code to make the code work with the Grad CAM alg…
-
Thanks for your excellent work! I wondered what visualize method you use in your article. Is it grad-cam?
-
Would it be possible to add functionality for **Grad-CAM** or **attention map** similar to those used in DINO?
Thank you!
-
Hi!
I would like to apply grad cam from here: https://keras.io/examples/vision/grad_cam/. The problem is that if I apply tfhub y just see one layer, what could I do?
-
Hi. Nice work.
I couldn't find the implementation of Grad-CAM in your source code. Can you help me?
-
计算Grad-CAM的时候应该有一点问题,权重是根据梯度计算的,而不是原始特征图
```cpp
data_type *const fea_ptr = delta[b]->data + o * area;
```