-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
1 addition
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
# Mini-Auto-Correct-Model | ||
|
||
Autocorrection, also known as text replacement, replace-as-you-type or simply autocorrect, is an automatic data validation function commonly found in word processors and text editing interfaces for smartphones and tablet computers. | ||
Auto Correct Model is the key feature of every app and web application. Here, auto correct model is made using the words text file. | ||
Initally pre-processing is done, followed by the counting the words and each word probabilities. The word having the maximum probability will be shows and the minimum edit distance. It includes four steps, delete, insert, sswitch and replace. | ||
Editing one letter is finnally used at the end for prediction although, the two edit distance and minimum edit distance is also explained here. |