Skip to content
Snippets Groups Projects
Commit bd12b6b2 authored by Pat Alt's avatar Pat Alt
Browse files

fun times

parents 9f274e83 6a1fcbd3
No related branches found
No related tags found
1 merge request!7669 initial run including fmnist lenet and new method
......@@ -27,4 +27,6 @@ run_experiment(
n_individuals = n_ind,
use_variants = false,
min_batch_size = 250,
nsamples = 10,
nmin = 10,
)
\ No newline at end of file
......@@ -6,4 +6,6 @@ counterfactual_data, test_data = train_test_split(
run_experiment(
counterfactual_data, test_data;
dataname="Linearly Separable",
nsamples=1,
nmin=1,
)
\ No newline at end of file
......@@ -125,7 +125,7 @@ const UPLOAD = "upload" ∈ ARGS
n_ind_specified = false
if any(contains.(ARGS, "n_individuals="))
n_ind_specified = true
n_individuals = ARGS[findall(contains.(ARGS, "n_individuals="))][1] |> x -> replace(x, "n_individuals=" => "")
n_individuals = ARGS[findall(contains.(ARGS, "n_individuals="))][1] |> x -> replace(x, "n_individuals=" => "") |> x -> parse(Int, x)
else
n_individuals = 100
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment