elm-pure icon indicating copy to clipboard operation
elm-pure copied to clipboard

How to handle regression ?

Open maneeshsagar opened this issue 3 years ago • 1 comments

I have dataset which has continuous value how to handle that dataset with ELM ?

maneeshsagar avatar Feb 23 '22 16:02 maneeshsagar

Assuming your dataset have an x_train, y_train, x_test, y_test did you tried to simply use y_xxxx sets themselves.

Just looking at mnist example

  1. Normalise both X-s and Y-s within 0.0 to 1.0 values - that's what lines like x_train = x_train.astype(np.float32) / 255. does
  2. skip the to_categorical() step applied to Y-s

Blimpyway avatar Feb 23 '22 18:02 Blimpyway