Tracing correct words from Jumbled words using machine learning

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 2K views
akerkarprashant
Messages
74
Reaction score
9
TL;DR
Tracing correct words from Jumbled words using machine learning prediction, search algorithms.
Can we trace all correct words from Jumbled words using machine learning prediction, search algorithms?

https://builtin.com/machine-learning/nlp-machine-learning

Input Dataset : Jumbled words.

Jumbled word example: oolp

Output : pool, loop, polo.
 

Attachments

  • images (4).gif
    images (4).gif
    7.4 KB · Views: 206
Last edited:
Physics news on Phys.org
Not sure you’d need machine learning to do this. I’d permute the letters and query a dictionary to determine if it’s a valid word.
 
Reply
  • Like
Likes   Reactions: akerkarprashant, anorlunda and pbuk
YIKES! Not another aggressive spell checker.

Given a set of scrambled letters, it may be possible to find a long list of dictionary words. So the spell checker chooses the one it "thinks" best from the list and replaces my text. Or the machine learning checker chooses the most common word from its training data and replaces my text. It is so frustrating to have all the spell checkers over the years refuse to allow me to type my own name -- Dick. :mad:
 
Reply
  • Like
Likes   Reactions: akerkarprashant
Isn't this just a slightly inferior version of that auto-correct/complete feature present in most phone messaging applications?