Create neural network to predict global pattern of a misspelled word (input) with 2 categorical strings as outputs

1 次查看(过去 30 天)
Hi Matlab staff !
I'm trying to create a neural network that detect misspelling in a single word given as input. I have only two output possibles.
For exemple I would like my network to predict that "swiming" (input) is actually "swimming" (and not "diving"). In the same way, I would like to predict that "dving" correspond to "diving" and not to "swimming".
Do you know special design tool or special Matlab function to create these kind of neural network ? (I don't even know if it is possible to use a neural network for this purpose).
I'm a beginner and I already tried to use the trainNetwork() function, but my network don't learn during the training (He stays at a loss of 70%).
Thanks a lot in advance for your help!
Nico

采纳的回答

T.Nikhil kumar
T.Nikhil kumar 2023-10-4
Hello Nicolas,
As per my understanding, you want to detect misspelling in a single word and return the correct spelling. This can be done without using neural networks, with the help of “correctSpelling” function. This would return the correct spelling of a word (string) that is passed as input. Note that, the ‘language’ input argument should be set as ‘en’ denoting English language.
newStr = correctSpelling(str,'language','en');
This can also be achieved by using shallow neural networks specifically using a feedforward neural networkfeedforwardnet. You must first create a dataset that contains the wrong spelling and corresponding correct spelling and use it for training the network using the ‘train’ function.
You can refer to the following documentation to understand more about “correctSpelling” function.
You can refer to the following documentation to understand more about ‘feedforwardnet.
Hope this helps!
  2 个评论
Nicolas CRETIN
Nicolas CRETIN 2023-10-8
Okay Thank you so much T.Nikhil kumar !
I think I will use the feedforward network because I need to classify name of specific towns, and I guess we can't make the function correctSpelling() learn new words.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Sequence and Numeric Feature Data Workflows 的更多信息

产品


版本

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by