-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for batches #46
Conversation
Codecov Report
@@ Coverage Diff @@
## master #46 +/- ##
==========================================
+ Coverage 94.52% 96.39% +1.86%
==========================================
Files 9 9
Lines 201 222 +21
==========================================
+ Hits 190 214 +24
+ Misses 11 8 -3
Continue to review full report at Codecov.
|
Benchmark resultJudge resultBenchmark Report for /home/runner/work/ExplainableAI.jl/ExplainableAI.jlJob Properties
ResultsA ratio greater than
Benchmark Group ListHere's a list of all the benchmark groups executed by this job:
Julia versioninfoTarget
Baseline
Target resultBenchmark Report for /home/runner/work/ExplainableAI.jl/ExplainableAI.jlJob Properties
ResultsBelow is a table of this job's results, obtained by running the benchmarks.
Benchmark Group ListHere's a list of all the benchmark groups executed by this job:
Julia versioninfo
Baseline resultBenchmark Report for /home/runner/work/ExplainableAI.jl/ExplainableAI.jlJob Properties
ResultsBelow is a table of this job's results, obtained by running the benchmarks.
Benchmark Group ListHere's a list of all the benchmark groups executed by this job:
Julia versioninfo
Runtime information
|
Benchmark resultJudge resultBenchmark Report for /home/runner/work/ExplainableAI.jl/ExplainableAI.jlJob Properties
ResultsA ratio greater than
Benchmark Group ListHere's a list of all the benchmark groups executed by this job:
Julia versioninfoTarget
Baseline
Target resultBenchmark Report for /home/runner/work/ExplainableAI.jl/ExplainableAI.jlJob Properties
ResultsBelow is a table of this job's results, obtained by running the benchmarks.
Benchmark Group ListHere's a list of all the benchmark groups executed by this job:
Julia versioninfo
Baseline resultBenchmark Report for /home/runner/work/ExplainableAI.jl/ExplainableAI.jlJob Properties
ResultsBelow is a table of this job's results, obtained by running the benchmarks.
Benchmark Group ListHere's a list of all the benchmark groups executed by this job:
Julia versioninfo
Runtime information
|
Closes #39.
Support and tests for analyzer calls on input batches.
Analyzers still return
Explanation
s. However, if the batch dimension (=last dim.) of the explanation is not equal to one,heatmap
will output a Vector of images.As a default, this vector is unpacked for "singleton batches". This can be turned off by setting the
heatmap
kwargunpack_singleton=false
.This required refactoring of the neuron selection, calls to
gradient_wrt_input
and an additional Tullio Einsum index for LRP rules on Dense layers.