Can I make Formula Depot invisible?
Hi - I am using Formula Depot as follows to run the NN model fit from table dt1 on a new table dt2: nn = dt1 << Neural(
Y( :Vg ),
X( :log10Id ),
Informative Missing( 0 ),
Validation Method( "Holdback", 0.3333 ),
Fit( NTanH( 3 ) ), Invisible
);
fd1 = Formula Depot();
nn << Publish Prediction Formula;
fd1 << Run Scripts(Table(dt2), Formulas(1));
fd1 << Close Window;
I would like to ideally ...