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

gsmc model

parent bc59ccdb
No related branches found
No related tags found
1 merge request!7669 initial run including fmnist lenet and new method
counterfactual_data, test_data = train_test_split(load_gmsc(nothing); test_size=TEST_SIZE)
nobs = size(counterfactual_data.X, 2)
# Default builder:
n_hidden = 128
activation = Flux.swish
n_hidden = 32
activation = Flux.relu
builder = MLJFlux.@builder Flux.Chain(
Dense(n_in, n_hidden, activation),
Dense(n_hidden, n_hidden, activation),
......@@ -24,4 +25,5 @@ run_experiment(
opt = Flux.Optimise.Descent(0.05),
n_individuals = n_ind,
use_variants = false,
min_batch_size = 250,
)
\ No newline at end of file
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