Questions tagged [thesaurus]

77 questions
0
votes
2 answers

Multiple Values from Excel cell to XML

I need to turn an Excel file into a very specific XML file for a Microsoft Search Thesaurus. This is a snippet of the Excel file: Excel Example And this is an example of what the XML needs to look like: XML Example I am finding it difficult to make…
0
votes
1 answer

How to accept user input in thesaurus api to display synonyms using flash as3

am working on a project to develop a thesaurus app using flash as3. However my app works fine but it only displays the synonym for the word already being put inside the thesaurus API url. However, I want my app to allow any user input through the…
mchucha
  • 33
  • 8
0
votes
1 answer

Endeca Thesaurus & Keyword Redirect Issues

We are having some trouble with Endeca workbench entries for the thesaurus. There seems to be an issue with multiword --> multiword one way mappings. rubber wheels --> rubber tyres There also seems to be an issue with entries including…
Conal
  • 33
  • 7
0
votes
1 answer

SQL Server : searching strings for equivalent phrasing such as inch, inches,'' and "

As per the title I am looking for a method to search data on an equivalence basis Ie user searches for a value of 20" it will also search for 20 inch, 20 inches etc... I've looked at possibly using full text search and a thesaurus but would have to…
Andrew J S
  • 86
  • 6
0
votes
1 answer

How can i use Thesaurus libraries in solr

I need to implement synonym search using solr. For this i need to import thesaurus libraries in solr. I tried searching for importing thesaurus libraries in solr but no luck.
Rohit Gaikwad
  • 817
  • 2
  • 8
  • 24
0
votes
1 answer

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 the phrase: Looking for a second hand car in…
Roy Peleg
  • 1,000
  • 2
  • 8
  • 25
0
votes
1 answer

SQL Server 2008 missing thesaurus xml and ftdata folder

I've recently installed SQL Server 2008, and I've tried the full text search and now I need to use the thesaurus for synonymous but I can't find any xmq and the ftdata folder which I read should contain the xml files...thank you!!!
Lorenzo
  • 673
  • 1
  • 11
  • 25
0
votes
1 answer

What is the best way to get just the synonyms from Moby Grady Thesaurus in Java?

I'm creating a visual thesaurus which will act as a watered down version shown here: https://www.visualthesaurus.com/ I'm a new programmer and this will be one of my first projects. I'm using Moby Grady's Thesaurus text file for my thesaurus list…
0
votes
1 answer

Insert function not working properly in Thesaurus program in C

I have started creating a program and used Graph ADT as I understood it. But I still have a problem in inserting my set of words. When I try to insert another set of words, the words that I have inserted before that seem to be gone from the list…
moondrums
  • 21
  • 3
0
votes
1 answer

SQL FREETEXT Search Escaping Space

I have a Thesaurus table in my database, I want to collect data using FREETEXT. However the string I'm searching for contains spaces. For example, I want to search for the code "AB 001" select * from TheThesaurus where freetext(TheDefinition, 'AB…
sora0419
  • 2,308
  • 9
  • 39
  • 58
0
votes
2 answers

how to perform query expansion

I am working on a C# application where the user provides a set of words ( typically less than 10) and I need to retrieve all the synonyms of these words. This is my first time working with dictionary and these stuff. I need to know the steps to…
0
votes
1 answer

How do you use the MarkLogic thesaurus API on phrases?

Let's say that you have a thesaurus entry for the United States of America that includes United States, USA, and America. Not the best example, but you get the idea. A user searches for United States government. How do you parse this string to…
Joe Glorioso
  • 93
  • 1
  • 5
-1
votes
0 answers

How can i link thousands of words to each-other as synonyms in my thesaurus project

I am making a thesaurus project. And when ever user clicks on each word they should see the following synonyms for that word and the process goes on, I already have a raw file for thesaurus just trying to figure out how to link these words with each…
-1
votes
1 answer

powerthesaurus-api getting empty array as output

I am referred the below link to use of Powerthesaurus-api. https://www.npmjs.com/package/powerthesaurus-api When I try the sample code, no data is outputted. What setup step am I missing? I have done the obvious npm install but when I try a sample…
Karthik.M
  • 67
  • 11
-1
votes
1 answer

What's a good data structure to store and work with a thesaurus?

I've been working for a few years on an English-language thesaurus project, which combines a few sources (e.g. WordNet, Wiktionary Thesaurus, Moby Thesaurus, Word2vec) to make a large thesaurus. Currently I have the data defined as a list of lists.…