Multilayer Perceptron

The scikit implementation of Multilayered Perceptron requires input in float. But if the input has strings, how can we convert them to float equivalents?

Hey @rishverma, you could do it like this,
string_array = np.array([“1.1”, “2.2”, “3.3”]) #your string array
float_array = string_array.astype(np.float)

Hope this resolved your doubt.
Plz mark the doubt as resolved in my doubts section. :blush:

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.