-
Notifications
You must be signed in to change notification settings - Fork 116
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature engineering #48
Comments
In order to use tflite model, you have to convert strings to token ids, such as 'He'-> 1332. |
Hi @fsx950223
In fact, I tested both chars and words with various preprocessing tricks and chose the one that gave the best predictions with the current model & training dataset. By the way, if you know any general rule about when to use chars or words for feature engineering, I'll be happy to learn and test it 🙂 |
In theory yes. You probably could use tflite by:
I don't know if it will actually work, but if you find a way to make work, please share the details here #26 |
For improving model performance, I recommend |
I have a question about feature engineering.
Why do you use chars as inputs instead of words?
For example,
is better than
?
The text was updated successfully, but these errors were encountered: