Can you recommend some good python library to get thesaurus and taxonomy of a give word?
Synonym:
>>> print get_synonym('image')
['picture', 'photo']
Taxonomy:
>>> print get_taxonomy('baseball')
['sports']
...
Has anyone done any performance measures with this in terms of speed where there is a high number of substitutes for any given word. For instance, I want to use this to store common misspellings; expecting to have 4-10 variations of a word.
<expansion>
<sub>administration</sub>
<sub>administraton</sub>
<sub>aministraton</sub>
<...
Is there an open source thesaurus available for download? It can be in any format. Preferably not from a 1915 dictionary. I need one to merge into a database application.
...
Hi, does anyone know if it's possible to do a thesaurus search
together with NEAR or AND/OR keywords.
Here is an example of the type of query I want to run:
SELECT Title, RANK
FROM Item INNER JOIN
CONTAINSTABLE(Item, Title, 'FORMSOF(Thesaurus, "red" NEAR "wine")') AS KEY_TBL
ON Item.ItemID = KEY_T...
Hi,
I'm working on a multilingual software where I need to show synonyms of Chinese text to the user. I couldn't find any API that could give synonyms of a given Chinese word. I tried MS-Office proofing tools but they do not support thesaurus for chinese, rather they provide grammar, translation etc.
Please suggest some API or workarou...
Hello,
I'm currently building a web application. In one of it's key processes the application need to match short phrases to other similar ones available in the DB.
The application needs to be able to match the phrase:
Looking for a second hand car in good shape
To other phrases which basically have the same meaning but use diffe...
Can I choose to ignore the tsENU.xml thesaurus file in a full-text query in SQL Server 2005?
IF @x = 0 THEN
BEGIN
SELECT FROM FREETEXTTABLE(use subtitutions and expansions in thesuarus)
END
ELSE
BEGIN
SELECT FROM FREETEXTTABLE(just match based on the exact query terms, no thesuaurs)
END
...
Is there somewhere one can get the xml for the english thesaurus from the web (for mssql that is)? I'd really hate to populate it by hand...
...
Does anyone know of any prebuilt SQL Server (Ideally) Thesaurus for handling English (and maybe eastern european) name expansions ?
Have a lookup thats runs as a full text query and it would be nice to be able to handle
Chris --> Christopher
Chris --> Christine
Bill --> William
Will --> William
If you don't know of such a list; is t...
I am creating an application in .net.
I got running application name http://www.spinnerchief.com/ . this exactly working what i need but i didn't get any help from goggle.
I need functionality for my application where user give one sentence and get more similar type sentence like this example.
This is an example what i require.
Supp...