The thesaurus tag has no wiki summary.
10
votes
3answers
610 views
Thesaurus class or API for PHP [edited]
TL;DR Summary: I need a single command-line application which I can use to get synonyms and other related words. It needs to be multi-lingual and works cross platform. Can anyone suggest a suitable ...
9
votes
3answers
2k views
Sentence generator using Thesaurus
I am creating an application in .NET.
I got a running application name http://www.spinnerchief.com/. It did what I needed it to do but but I did not get any help from Google.
I need functional ...
7
votes
1answer
452 views
SQL Server vs MySQL: CONTAINS(*,'FORMSOF(THESAURUS,word)')
I am shocked.
I spent past 3-4 days figuring out how I could implement stemming (and synonyms searches) in mysql when I see in SQL Server the query is incredibly easly:
Select * from tab where ...
3
votes
1answer
533 views
Calling wordnet from php (Wordnet class or API for PHP)
I am trying to write a program to find similarity between two documents, and since im using only english, I decided to use wordnet, but I cannot find a way to link the wordnet with php, I cannot find ...
3
votes
1answer
637 views
Need a thesaurus database
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.
2
votes
3answers
35 views
Fastest approach for phrase query expansion
I'm using a list of synonyms to direct a process of query expansion. The format looks like this:
fu=foo
ba=bar
etc=etcetera
werd=word
I'm using a straightforward binary search algorithm to run each ...
2
votes
1answer
203 views
Thesaurus for SQL Server full-text searching
Does anyone know where I can get a thesaurus (or list) of people's names and their relationships?
For example:
Bill = Billy = Billie = Will = Willie = William
Sue = Susie = Susan = Suzanne
I can ...
2
votes
0answers
65 views
Is there a Java open source library for managing a NISO/ANSI Z39.19 controlled vocabulary in XML or SKOS format?
I need a Java library to parse thesauri files which adhere to the NISO/ANSI Z39.19 standard XML or SKOS format. Parsing these files and creating associated classes to represent the data doesn't seem ...
2
votes
1answer
78 views
Can I selectively ignore the thesaurus file in a SQL Server full-text query?
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)
...
1
vote
3answers
287 views
Is there any Thesaurus database available?
I need a Thesaurus database which contains all the words and its synonyms.It would be grateful if anyone give a solution with the link for the same.
1
vote
1answer
95 views
Is there a good machine-readable thesaurus?
Is there a good machine-readable thesaurus that's free to download and use? We need to be able to canonicalise input into our app so that if we already have a record for 'what time is dinner' and the ...
1
vote
1answer
160 views
SQL full-text thesaurus
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...
1
vote
2answers
422 views
Chinese thesaurus
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 ...
1
vote
1answer
495 views
FORMSOF Thesaurus in SQL Server
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; ...
0
votes
2answers
35 views
VIM: Use the working directory in a path setting
Basically, what I'm trying to do is have VIM search for dictionary/thesaurus results using dictionary.txt and thesaurus.txt in the current working directory.
So what I've tried in vimrc is something ...
0
votes
0answers
6 views
Thesaurus search in indexing services
I have a thesaurus search feature that does filtering of words within a given numerical distance. I want to use queires that translates to look for two words that are anywhere within a (1) sentence, ...
0
votes
0answers
61 views
Querying an Open Source Dictionary & Thesaurus
I'm developing an application & I'm hoping to be able to query words in real time from a dictionary & thesaurus stored on a database. Has anyone heard of any open source software ...
0
votes
1answer
163 views
PHP/Java MYSQL Thesaurus Database
I'm looking for a thesaurus that is free and can be easily dump into a mysql database and accessed using php or java to get related words and meanings, I have been searching, I saw mobysaurus but I ...
0
votes
1answer
45 views
Thesaurus in Rails 3
I am using Rails 3 and I would like to create an application that works like a thesaurus. I have read some tutorials on how to do has-and-belongs-to-many (HABTM) relationships, but I'm not sure how to ...
0
votes
2answers
195 views
Mysql Word Association/ thesaurus DB
Iv been scouring the net looking for a simple lookup thesaurus to import into mysql? Could anyone point me in the right direction?
I am also looking for a word association db aswell??
Thanks
...
0
votes
3answers
189 views
where can I find a good wordlist
I'm looking for a file that is a wordlist and also is set up by type of word. For example something in this format
Nouns: {
bus
car
deck
elephant
...
}
Adjectives {
awful
...
0
votes
1answer
50 views
In need of a SaaS solution for semantic thesaurus matching
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 ...
0
votes
1answer
197 views
SQL Server 2005. Full Text Search. Need Thesaurus working with NEAR/AND/OR keywords
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 ...
0
votes
1answer
581 views
Thesaurus and taxonomy library for python
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 ...