I split my dataset in X_train
, Y_train
, X_test
and Y_test
, and then I used the symbolicRegressor...
I've already convert the string values from Dataframe in float values.
But by applying the symbolicRegressor
I get this error:
ValueError: could not convert string to float: 'd'
Where 'd' is a value from Y.
Since all my values in Y_train
and Y_test
are alphabetic character because they are the "labels", I can not understand why the symbolicRegressor
tries to get a float number ..
Any idea?