XBNet icon indicating copy to clipboard operation
XBNet copied to clipboard

Can i use your implementation in a non interactive way?

Open HiramCillo opened this issue 3 years ago • 4 comments

I just think that is little weird to introduce manually (or interactively) the number of layers and other hyperparameters.

HiramCillo avatar Dec 24 '21 14:12 HiramCillo

+1

showkeyjar avatar Dec 30 '21 08:12 showkeyjar

+1000

jmrichardson avatar Oct 14 '22 07:10 jmrichardson

+1000000

Slyth3 avatar Apr 25 '23 09:04 Slyth3

So I found how to do this in the code

when initialising the model you need to set the paramaters

  • input_through_cmd = True
  • inputs_for_gui= [list of dimensions]

Example: model = XBNETClassifier(X_train,y_train, num_layers = 2, input_through_cmd = True, inputs_for_gui=[11,11,11,11,3])

This is a model of 4 hidden layers of 11 neurons each with "None" (3) output layer

Slyth3 avatar Apr 25 '23 09:04 Slyth3