https://github.com/ashish493/spell_checker
WSM Project of spell checker implemented in Python
https://github.com/ashish493/spell_checker
editdistance ngram nltk python3 spellchecker
Last synced: 3 months ago
JSON representation
WSM Project of spell checker implemented in Python
- Host: GitHub
- URL: https://github.com/ashish493/spell_checker
- Owner: ashish493
- Created: 2020-11-03T06:58:55.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2020-11-09T15:47:00.000Z (almost 5 years ago)
- Last Synced: 2025-02-24T02:14:58.966Z (8 months ago)
- Topics: editdistance, ngram, nltk, python3, spellchecker
- Language: Python
- Homepage:
- Size: 4.39 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SPELL CHECKER
## Problem statement:-
To Design and Implement a Spell Checker in English## Solution:-
- We used the method of edit distance for calculating the distance between the query and individual words.
- To rank the results, we used the Jaccard coefficient.
- We have also used the nltk module to increase the efficiency of our code.
- For the word list, we have used a word list from nltk toolkit.## Group Members:-
- Anwesh Nayak :- B218005
- Arijit Parida :- B218006
- Arun Kumar:- B218007
- Ashish Malik:- B218008> Note:- This project was an assignment for the course of Web Search Mining.