The process for reducing inflected words to their stem.
0
votes
1answer
30 views
Getting the closest noun from a stemmed word
Short version:
If I have a stemmed word:
Say 'comput' for 'computing', or 'sugari' for 'sugary'
Is there a way to construct it's closest noun form?
That is 'computer', or 'sugar' respectively
...
0
votes
1answer
24 views
SOLR stemming and stopwords
In SOLR 3.5 text field type the StopFilterFactory is listed before the PorterStemFilterFactory.
does this mean that if I wanted to stop for example "game" and "games" I would have to add both to ...
3
votes
1answer
58 views
Python Stemming words in a File
I want to do stemming in a file. When I use it in terminal it works fine, but when I apply it in a text file, it does not work.
Terminal code:
print PorterStemmer().stem_word('complications')
...
-1
votes
0answers
44 views
Stem a word in c#
I'm using C# and wordnet to extract root form i.e., stem of a word. I used Snowball and Porter stemming techniques but it doesn't seem to satisfy my whole purpose.
I used WordnetDotnet api, but I ...
0
votes
0answers
52 views
Code works in VS2010 but not in VC++ 6.0
I'm working on a project, in which I'm using stemming library which works quite perfectly on Visual Studio 2010 (Express) but when I tried to compile the same project in VC++ 6.0, it generated errors. ...
1
vote
0answers
27 views
How to perform stemming/lemming on GAE-search application?
I am trying to implement stemming in my search app. I have already tried using ~ operator, but it didn't work.
So, I have 3 questions:
1) Should I index a document in some special way to be able to ...
0
votes
0answers
28 views
Mallet and word stems
I'm using mallet for a text classification task and it seems to be that mallet is applying some word stemming algorithm on my text. How can I configure mallet to avoid using this feature?
0
votes
0answers
34 views
Customizing the output of Stemming
I've been using Snowball Porter2 for stemming. I don't want the root form as output.For eg., the Porter2 produces "Emergenc" after stemming "Emergencies". I want "Emergency" instead. Will someone ...
1
vote
1answer
92 views
Sphinx morphology stem_en not working
I have a single-field Sphinx index with stemming set up as follows:
index main_sphinxalert
{
# Options:
type = rt
path = ...
0
votes
1answer
56 views
Should I remove Stop words with POS tagging?
I'm new to this NLP stuff but all the examples of POS tagging and Sentence Chunking I have seen don't seem to have removed stops words. So question I have if I'm doing POS tagging and Chunking is does ...
0
votes
1answer
54 views
Is there an open-source self-learning stemmer?
I need to implement some sort of stemmer/lemmatizer. I have some words in different forms (a few thousands). It's not a morphological dictionary, just a small part of it. Is it a good idea to learn a ...
0
votes
1answer
80 views
What other alternative are there to stemming?
Given a list of words like this ['add', 'adds', 'adding', 'added', 'addition'], I want to stem all of them to the same word 'add'. That means stemming all different verb and noun forms of a word (but ...
3
votes
1answer
136 views
Configuring Custom Lucene Analyzer to accept certain stop words
I need to modify the lucene analyzer for it to be able to recognize the word "Ben" (Dutch stop word). Kindly guide me further. How do I make Lucene Analyzer accept this word as a regular word?
...
0
votes
2answers
117 views
lexical-level similarity word clustering tool
Is there any open software toolkit that compares the lexcial-level similarities among words and group similar words together? For example, Blue jean, Blue jeans, and blue jea (miss-spelled) should be ...
1
vote
1answer
267 views
TreeTagger installation successful but cannot open .par file
Do anyone know how to resolve this file reading error in TreeTagger that is a common Natural Language Processing tool used to POS tag, lemmatize and chunk sentences?
alvas@ikoma:~/treetagger$ echo ...
0
votes
1answer
41 views
Is there a port for KStem for .NET?
I'm about to launch into a Lucene.NET implementation and I am concerned about using the PorterStemFilter. Reading here, and reading source code, it appears to be far, far too aggressive for my needs.
...
0
votes
0answers
157 views
Getting the root of an Arabic word
I have a Python code that take an Arabic word and get the root and also remove diacritics,
but I have a problem with the output. For example: when the input is "العربيه" the output is:"عرب"
but when ...
0
votes
0answers
38 views
SearchKit: Supporting phrase based and stemmed searching with spotlight importers
Is it possible to support both phrase based and stemmed searching using SearchKit which builds its indexes based on a 3rd party spotlight importer? If so, how?
If I had control over the 3rd party ...
0
votes
0answers
47 views
Searh Engine: Stemming
So, I am building a search engine. Nothing big - crawling content from pages, performing some language processing, storing it in a database and then searching it. Just to get the feel of how things ...
0
votes
2answers
120 views
Using stemming in a SOLR query
I've set up SOLR, and added a document to the example 'collection1'.
<doc>
<str name="id">3007WFP</str>
<str name="name">Fishing</str>
<str ...
2
votes
1answer
178 views
Advanced Search Option in Solr corresponding to DtSearch options
We are replacing the search and indexing module in an application from DtSearch to Solr using solrnet as the .net Solr client library.
We are relatively new to Solr/Lucene and would need some ...
2
votes
1answer
110 views
Stemming that avoids matching popular words with different meanings [closed]
I'm currently using the PorterStemmer to identify derived words. However, I'm facing an issue with words that don't have the same meaning but appear to have. For example:
Market and Marketing
Wine and ...
0
votes
1answer
794 views
stem words and create index without stop words using Lucene 4.0
I have the following problem:there are several text documents which I need to parse and create an index but without stop words and to stem the terms.I can do it manually but I heard from a colleague ...
1
vote
1answer
74 views
String input distributed to array (Android)?
I've been looking for answer regarding my question but I cannot find one or maybe I'm not just using the right terms when searching.
My question is, how can I distribute string entered in an editText ...
4
votes
2answers
114 views
Can I perform stemming using regular expressions?
How can I get my regular expression to match against just one condition exactly?
For example I have the following regular expression:
(\w+)(?=ly|es|s|y)
Matching the expression against the word ...
2
votes
1answer
74 views
Solr wildcards configuration issue
hi who can i configure solr to find everyting like an texteditor?
i have a field which contains
... text texct blah Computer-Zeitalter blah text m00h ...
i've configured it like this
...
0
votes
1answer
116 views
Is there any third party tool available to perform stemming in python
I am using Python NLTK library to perform stemming on a big corpus. I am doing following
text = [porter.stem(token) for token in text.split()]
text = ' '.join(text)
"text" is representing one row ...
0
votes
1answer
132 views
Stemming Algorithm
i have a question about Porter Stemmer Algorithm, I researched on the internet,
but i couldn't find what the difference between understemming and overstemming.
and is the Porter Algorithm ...
4
votes
1answer
187 views
Italian stemming library in java
i'm searching a java library or something to do stemming of italian strings of words.
The goal is to compare italian words. In this moment words like "attacco", "attacchi","attaccare" etc., are ...
1
vote
2answers
176 views
Find different realization of a word in a sentence string - Python
(This question is with regards to string checking in general and not Natural Language Procesisng per se, but if you view it as an NLP problem, imagine it's not a langauge that current analyzers can ...
0
votes
1answer
145 views
sphinx search: how to get the frequency word list that are stemmed?
i'm trying to get the frequency list of words from indexer command line tool and get it with the words unstemmed, although i set the morphology = stem_en in index settings and search itself works fine ...
2
votes
0answers
110 views
Adding language to pystemmer
I would like to use pystemmer with whoosh, but there is no support for my language.
I found two snowball files for my language (Snowball), and i made *.c files from them as advised here.
Now i ...
0
votes
1answer
195 views
How do I configure and use KStem in java?
I want to stem the words in my document and have zeroed in on KStem. I am working in Eclipse and have configured Lucene by downloading the lucene-core jar file to the lib folder and adding it to the ...
0
votes
1answer
145 views
Krovetz stemming alogrithm ( KStemming) help needed
Could you please explain me the algorithm for Krovetz stemming alogrithm ( Kstemming) , i want to know how its working.
Thanks in advance
1
vote
1answer
73 views
Stemmer in Solr
I was using the EnglishPorterFilterFactory for the application that I'm currently building in solr. Things are going fine. I tried using EnglishMinimalStemFilterFactory since I wanted to go for a ...
1
vote
1answer
118 views
How can I use the word breaker from Microsoft SQL Server 2005 in my stand-alone C# program
I am writing a program which will query a full text search index on Microsoft SQL Server 2005. The data being indexed are large blobs of text (multiple lines).
I need to extract only those lines of ...
0
votes
1answer
163 views
ElasticSearch stemming with protected words
I'm using ElasticSearch (via Ruby, Tire) for a search feature on an ecommerce clothing website. I need a stemming filter, BUT I also need to be able to specify a list of protected words which do not ...
0
votes
2answers
280 views
Solr - Wild Card Search varies with Stemming Methods
I have 2 versions of solr working in my machine . say SolrVer1 and SolrVer2
SolrVer1 have applied , below stemming methods on field type text_en_splitting
<filter ...
0
votes
2answers
90 views
How do I read in an editable file that contains words that I don't want stemmed using Lingua::Stem's add_exceptions($exceptions_hash_ref) in perl?
I am using Perl's Lingua::Stem module (Lingua::Stem) and I want to have a text file or other editable file format to contain a list of words I do not want stemmed. I want to be able to add words to ...
6
votes
2answers
981 views
R stemming a string/document/corpus
I'm trying to do some stemming in R but it only seems to work on individual documents. My end goal is a term document matrix that shows the frequency of each term in the document.
Here's an example:
...
0
votes
1answer
168 views
Stemming + wildcarding: unexpected effects
I am editing a lucene .net implementation (2.3.2) at work to include stemming and automatic wildcarding (adding of * at the ends of words).
I have found that exact words with wildcarding don't work. ...
1
vote
1answer
81 views
How to boost solr results based on rawquerystring when using stemming
When using stemming, a search keyword containing plural words, like "cats", is converted to "cat" in Solr parsedquery.
Solr result now contains documents that matched "cat" as well as "cats".
I want ...
0
votes
0answers
141 views
Django: Using Haystack with Whoosh and PyStemmer
From the Whoosh documentation
If you compile and install the py-stemmer library, the PyStemmerFilter provides slightly easier access to the language stemmers in that library.
But I can't see ...
0
votes
1answer
123 views
How can I search a single word in apache Solr?
I am using Apache Solr for indexing using DataImportHandler.
The document structure is as follows:
id(long), title(text), abstract(text), pubDate(date)
I combined title and abstract filed fro text ...
2
votes
1answer
194 views
How does Word find matching word forms in Advanced Search?
I have a word document that has occurrences of both "perform" and "performance". When I use the advanced find tool in the Word UI (goal to eventually translate this to the Find.Execute command for C# ...
2
votes
1answer
1k views
ElasticSearch Stemming
I am using ElasticSerach and I want to setup basic stemming for English. So basically, fighter returns fight or any word that contains the fight root.
I am a little confused how to implement this. I ...
1
vote
2answers
182 views
Compatibility of Stemmers between NLTK and Lucene
I'm using Lucene in Java to index a corpus and extract stemmed wordlists from it. I stem using the EnglishAnalyzer. Then I hand the wordlist to Python to do some things with NLTK.
Is there a stemmer ...
1
vote
1answer
222 views
SOLR and stemming
Is there an easy way to simply exclude certain words from stemming in solr? We have a database full of food items and everytime we search for things like "fried shrimp" it will bring back results ...
0
votes
1answer
220 views
Customizing KStem filter in Solr
I'm trying to evaluate switching stemming filters in Solr from Porter to KStem. I see reference to the ability to configure KStem via a direct_conflations.txt file and other files, but I can't seem ...
0
votes
3answers
392 views
Lucene.NET PorterStemFilter Source Examples and is it Right for me?
Firstly, I must say that the version of Lucene.NET we are using is not up to date as it came packaged with Sitecore 6.4.1 and until now we haven't had to dig too far into the use of Analyzers and ...

