From 75ee6c595c0183d0417a42bbda3a7c848e2b92b5 Mon Sep 17 00:00:00 2001 From: Lorenzo Contento <16554887+lcontento@users.noreply.github.com> Date: Mon, 24 Jun 2024 22:33:19 +0000 Subject: [PATCH] remove duplicated lines --- 03_MeNets.jl | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/03_MeNets.jl b/03_MeNets.jl index 98bdb23..8688467 100644 --- a/03_MeNets.jl +++ b/03_MeNets.jl @@ -76,19 +76,6 @@ plotgrid(pred_train) pred_test = predict(model_me, testpop_me[1:12], coef(fpm_me); obstimes=0:0.01:1) plotgrid(pred_test ; ylabel="Y (Test data)") -#= -When we generated the data, we sampled two parameter values for each Subject. -In this Mixed-effect neural network, we're using two random effects, so there is hope that -the model can perfectly capture this two-dimensional between-subject variability. - -But, what if our model had fewer random effects than there are dimensions of subject outcome variability? - -Exercise: -Modify the model_me to only use a single random effect (change the I(2) in the -random effects and the number of inputs in the MLP) and see how the resulting -fit does. -=# - ############################################################################################ ############################################################################################