I am trying to use phonetic algorithms like Soundex and/or Metaphone to generate words that sound similar to a given dictionary word. Do I have to have a corpus of all dictionary words for doing that? Is there another way to generate words that sound similar to a given word without using a corpus? I am trying to do it in Python.
Is there a way to generate words that sound similar to a given dictionary word without using a corpus?
1.3k Views Asked by user2832492 At
1
There are 1 best solutions below
Related Questions in PYTHON
- new thread blocks main thread
- Extracting viewCount & SubscriberCount from YouTube API V3 for a given channel, where channelID does not equal userID
- Display images on Django Template Site
- Difference between list() and dict() with generators
- How can I serialize a numpy array while preserving matrix dimensions?
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Why is my program adding int as string (4+7 = 47)?
- store numpy array in mysql
- how to omit the less frequent words from a dictionary in python?
- Update a text file with ( new words+ \n ) after the words is appended into a list
- python how to write list of lists to file
- Removing URL features from tokens in NLTK
- Optimizing for Social Leaderboards
- Python : Get size of string in bytes
- What is the code of the sorted function?
Related Questions in SOUNDEX
- Phonetic search for Indian languages
- Is there a way to generate words that sound similar to a given dictionary word without using a corpus?
- Elasticsearch Soundex Match Query - NEST
- sql join 2 tables if they have similar names/values
- Mysql - Calculate soundex difference between two strings
- Reverse of soundex in mysql
- Printing the contents and index location of one file by matching it with other file using python
- Localized (Double) Metaphone for Portuguese (pt_PT)
- Suggestions for Querying Database for Names
- UnicodeDecodeError: with apply function in column for each row
- The soundex function from oracle has a result different from official documentation
- Finding similar sounding text in VBA
- Soundex algorithm in Python (homework help request)
- Is there a "Sounds-Like" string matching algorithm implemented in Dutch?
- PHP/MySQL: Highlight "SOUNDS LIKE" query results
Related Questions in PHONETICS
- Phonetic search for Indian languages
- Is there a way to generate words that sound similar to a given dictionary word without using a corpus?
- Phonetic Algorithm to search Usernames
- synonyms analyzer and PhoneticAnalyzer in Hibernate Search
- Where is the same error coming from, LMER test?
- What's a Good package for Phonetic Representation for Various Human Languages?
- How can I generate a list of words that phonetically sound alike given one input word?
- Search words by phonetic symbols
- Getting most likely documents of the query using phonetic filter in solr
- Threshold frequency is not working in spell check in Solr
- How do I find the maximum phonetic and synctactic similarity between two strings?
- Meta tags: title and description for both latin and non latin letter site
- Phonetics Character to Speech
- Vowel explanation
- Using IPA symbols in a table with Oracle Database 11g
Related Questions in METAPHONE
- Is there a way to generate words that sound similar to a given dictionary word without using a corpus?
- Is it possible to get metaphones for those non-english characters?
- Unexpected results from Metaphone algorithm
- Localized (Double) Metaphone for Portuguese (pt_PT)
- configure double metaphone in french java apache
- variables equal with doublemetaphone on pyspark
- PHP 7 metaphone function performance
- How to make a fulltext search
- How to decide which Encoder to use for which language in Elasticsearch "Phonetic Token filter"?
- Fuzzy autocomplete
- Speech to Text on Android with custom unusual word matching
- MetaPhone Functions (like SoundEx) functions and use in R?
- Accuracy of metaphone for word search in dictionary database in php
- Why is the php function "metaphone" around 20x slower on windows than linux?
- Test Suite for Double Metaphone?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If you don't use a corpus, then you will probably have to manually define a set of rules to split a word in phonetic parts and then find the list of close phonemes. This can generate similar sounding words but most won't exist. If you want to generate close sounding words that exist, then you necessarily need a corpus.
You didn't precise the goal of your task, but you may be interested in the works of Will Leben "Sounder I" (and II and III) and Jabberwocky sentences.