elm-pure
elm-pure copied to clipboard
How to handle regression ?
I have dataset which has continuous value how to handle that dataset with ELM ?
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
- 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 - skip the to_categorical() step applied to Y-s