Skip to content

Commit 54d9b12

Browse files
authored
Remove unused dependencies and utils (#160)
Dependencies and utils were previously moved to XAIBase.jl (#154) and RelevancePropagation.jl (#157)
1 parent 930038c commit 54d9b12

File tree

7 files changed

+0
-85
lines changed

7 files changed

+0
-85
lines changed

Project.toml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ version = "1.0.0-DEV"
55

66
[deps]
77
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
8-
ImageCore = "a09fc81d-aa75-5fe9-8630-4744c3626534"
9-
ImageTransformations = "02fcd773-0e25-5acc-982a-7f6622650795"
108
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
119
Reexport = "189a3867-3050-52da-a836-e630ba90ab69"
1210
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
@@ -15,8 +13,6 @@ Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"
1513

1614
[compat]
1715
Distributions = "0.25"
18-
ImageCore = "0.9, 0.10"
19-
ImageTransformations = "0.9, 0.10"
2016
Random = "1"
2117
Reexport = "1"
2218
Statistics = "1"

src/ExplainableAI.jl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,9 @@ using Base.Iterators
77
using Distributions: Distribution, Sampleable, Normal
88
using Random: AbstractRNG, GLOBAL_RNG
99
using Zygote
10-
using ImageCore
11-
using ImageTransformations: imresize
1210

1311
include("compat.jl")
1412
include("bibliography.jl")
15-
include("utils.jl")
1613
include("input_augmentation.jl")
1714
include("gradient.jl")
1815

src/utils.jl

Lines changed: 0 additions & 46 deletions
This file was deleted.

test/Project.toml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,19 @@
22
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
33
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
44
Flux = "587475ba-b771-5e3f-ad9e-33799f191a9c"
5-
ImageCore = "a09fc81d-aa75-5fe9-8630-4744c3626534"
65
JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819"
76
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
8-
LoopVectorization = "bdcacae8-1622-11e9-2a5c-532679323890"
9-
Metalhead = "dbeba491-748d-5e0e-a39e-b530a07fa0cc"
107
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
118
ReferenceTests = "324d217c-45ce-50fc-942e-d289b448e8cf"
129
Suppressor = "fd094767-a336-5f1f-9728-57cf17d0bbfb"
1310
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
14-
Tullio = "bc48ee85-29a4-5162-ae0b-a64e1601d4bc"
1511
XAIBase = "9b48221d-a747-4c1b-9860-46a1d8ba24a7"
1612

1713
[compat]
1814
Aqua = "0.8"
1915
Distributions = "0.25"
2016
Flux = "0.13, 0.14"
21-
ImageCore = "0.9, 0.10"
2217
JLD2 = "0.4"
23-
LoopVectorization = "0.12"
24-
Metalhead = "0.8, 0.9"
2518
ReferenceTests = "0.10"
2619
Suppressor = "0.2"
27-
Tullio = "0.3"
2820
XAIBase = "1.2"

test/runtests.jl

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using LoopVectorization
21
using ExplainableAI
32
using Flux
43
using Test
@@ -13,10 +12,6 @@ pseudorand(dims...) = rand(MersenneTwister(123), Float32, dims...)
1312
@info "Running Aqua.jl's auto quality assurance tests. These might print warnings from dependencies."
1413
Aqua.test_all(ExplainableAI; ambiguities=false)
1514
end
16-
@testset "Utilities" begin
17-
@info "Testing utilities..."
18-
include("test_utils.jl")
19-
end
2015
@testset "Input augmentation" begin
2116
@info "Testing input augmentation..."
2217
include("test_input_augmentation.jl")

test/test_cnn.jl

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using LoopVectorization
21
using ExplainableAI
32
using Flux
43
using JLD2

test/test_utils.jl

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)