Skip to content

Commit

Permalink
trying to fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
pat-alt committed Apr 8, 2024
1 parent 21c6c0d commit 3b9a665
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab"
CounterfactualExplanations = "2f13d31b-18db-44c1-bc43-ebaf2cff0be0"
Flux = "587475ba-b771-5e3f-ad9e-33799f191a9c"
PackageExtensionCompat = "65ce6f38-6b18-4e1d-a461-8949797d7930"
PythonCall = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
PythonCall = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
TaijaData = "9d524318-b4e6-4a65-86d2-b2b72d07866c"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using CounterfactualExplanations
using CounterfactualExplanations.Data
using CounterfactualExplanations.DataPreprocessing
using CounterfactualExplanations.Models
using Printf
using PythonCall
using Random
using TaijaData
using TaijaInteroperability
using Test

Expand Down
4 changes: 2 additions & 2 deletions test/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Loads synthetic data, models, and generators.
function _load_synthetic()
# Data:
data_sets = Dict(
:classification_binary => load_linearly_separable(),
:classification_multi => load_multi_class(),
:classification_binary => CounterfactualData(load_linearly_separable()...),
:classification_multi => CounterfactualData(load_multi_class()...),
)
# Models
synthetic = Dict()
Expand Down

0 comments on commit 3b9a665

Please sign in to comment.