We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 318e1a5 commit 9b68cc4Copy full SHA for 9b68cc4
benchmark/benchmarks.jl
@@ -18,8 +18,8 @@ algs = Dict(
18
"Gradient" => Gradient,
19
"InputTimesGradient" => InputTimesGradient,
20
"LRP" => LRP,
21
- "SmoothGrad" => model -> SmoothGrad(model, 10),
22
- "IntegratedGradients" => model -> IntegratedGradients(model, 10),
+ "SmoothGrad" => model -> SmoothGrad(model, 5),
+ "IntegratedGradients" => model -> IntegratedGradients(model, 5),
23
)
24
25
# Define benchmark
@@ -51,10 +51,11 @@ rules = Dict(
51
"ZeroRule" => ZeroRule(),
52
"EpsilonRule" => EpsilonRule(),
53
"GammaRule" => GammaRule(),
54
- "ZBoxRule" => ZBoxRule(zero(T), oneunit(T)),
55
- "FlatRule" => FlatRule(),
56
"WSquareRule" => WSquareRule(),
+ "FlatRule" => FlatRule(),
57
"AlphaBetaRule" => AlphaBetaRule(),
+ "ZPlusRule" => ZPlusRule(),
58
+ "ZBoxRule" => ZBoxRule(zero(T), oneunit(T)),
59
60
61
SUITE["Layer"] = BenchmarkGroup([k for k in keys(layers)])
0 commit comments