Yasuhiro Kubota
Results
92
comments of
Yasuhiro Kubota
Hi, @phitoduck . Thank you for your good question. Unfortunately, for now, `tf-keras-vis` does NOT support returning two results at a time that are the model output and the visualized...
Hi, @inesws . I'm sorry I didn't make it clear enough. You can pass the `score_function` to `saliency()` as below: ```python def score_function(output): return (output[0][1], output[1][294], output[2][413]) saliency = Saliency(model)...