Home > Software engineering >  What model should I use for taking String value as input dataset? [closed]
What model should I use for taking String value as input dataset? [closed]

Time:09-17

I'm making an anti-scam bot and I want to predict if a message is a scam message, but it throws a ValueError(could'nt convert string to float) I am currently using the Decision Tree algorithm

CodePudding user response:

Almost all the models accept floats and don't accept Strings, you have multiple ways to convert String to numbers (preprocess your data) before feeding it to your model as input.

You can try for example Word2Vec model by Gensim: Word2Vec

  • Related