Tagged Questions
The porter-stemmer tag has no wiki summary.
5
votes
1answer
178 views
“Opposite” of Porter Stemmer algorithm?
I'm looking for some way of performing the opposite of a Porter Stemmer algorithm, i.e. the string "search" would return an array "searches, searched, searching etc.."
Does something like this exist ...
4
votes
1answer
63 views
Is there a tool to obtain all get all derivatives of a word in PHP?
I need to input "face" and get "facial, faces, faced, facing, facer, faceable" etc.
I've come across some ineffective programs which do the opposite, such as SNOWBALL and a couple of Porter Stemming ...
4
votes
2answers
6k views
Stemming algorithm that produces real words
I need to take a paragraph of text and extract from it a list of "tags". Most of this is quite straight forward. However I need some help now stemming the resulting word list to avoid duplicates. ...
3
votes
3answers
377 views
European language/french stemmer in Javascript
I am in need of a stemmers written in Javascript for european languages. I'm currently looking for a french stemmer, but if there's stemmer for any other language, please let me know. There are ...
2
votes
1answer
164 views
Is there an implementation of a croatian word stemming algorithm?
i'm searching for an implementation of a croatian word stemming algorithm. Ideally in Java but i would also accept any other language.
Is there somewhere a community of english speaking developers, ...
2
votes
4answers
1k views
Is there a java implementation of Porter2 stemmer
Do you know any java implementation of the Porter2 stemmer(or any better stemmer written in java)? I know that there is a java version of Porter(not Porter2) here :
...
1
vote
0answers
52 views
best practices for text-based searches in database
I have an application where I need to search in various text-based fields. The application is developed using NHibernate as an ORM.
I would like to implement Porter Stemming in searches, in order to ...
1
vote
1answer
82 views
Solr Snowball stemmer is inconsistent with Spanish
I have this stemmed field:
<fieldtype name="textes" class="solr.TextField">
<analyzer type="index">
<tokenizer class="solr.WhitespaceTokenizerFactory"/>
<filter ...
1
vote
1answer
142 views
In Solr, why is 'built' not being stemmed to 'build' but 'building' is?
I'm trying to figure out two things in this posting:
Why is 'built' NOT being stemmed to 'build' even though the
field type definition has a stemmer defined. However, 'building' is
being stemmed to ...
1
vote
2answers
189 views
I want a Java Arabic stemmer
I'm looking for a Java stemmer for Arabic.
I found a lib called "AraMorph" , but its output is uncontrollable and it makes formation to words which is unwanted.
Is there any other stemmer for Arabic ...
1
vote
3answers
2k views
Stemming English words with Lucene
I'm processing some English texts in a Java application, and I need to stem them.
For example, from the text "amenities/amenity" I need to get "amenit".
The function looks like:
String ...
1
vote
1answer
276 views
porter stemming algorithm implementation question?
I am trying to implement porter stemming algorithm but i am stuck at this point:
Step 1b
(m>0) EED -> EE feed -> feed
agreed ...
1
vote
1answer
292 views
why the results of the porter stemmer algorithm that I have not in accordance with the root word that should be?
i need to use porter stemmer algorithm to get stem word in my application,but when i test the algorithm which i get from http://www.tartarus.org/~martin/PorterStemmer, the result of stemming isn't ...
1
vote
2answers
273 views
Lucene PorterStemmer question
Given the following code:
Dim stemmer As New Lucene.Net.Analysis.PorterStemmer()
Response.Write(stemmer.Stem("mattress table") & "<br />") // Outputs: mattress t
...
1
vote
1answer
222 views
why does Porter Stemmer yield a string which can be stemmed again?
stem('apples')='apple'
stem('apple')='appl'
stem('appl')='appl'
isn't this a flaw in the stemming algorithm?
(this is using the Porter Stemming Algorithm)
0
votes
1answer
56 views
Integrate given Porter stemmer in C
I saw the following has a porter stemmer implementation for C http://tartarus.org/martin/PorterStemmer/
However, though I have tried several times, I cannot integrate it in my code. Can someone tell ...
0
votes
1answer
124 views
save output of porter stemming algorithm to text file
i have this porter algorithm code in c#,can someone tell me how to save the output of this code to txt file? also do i input name of a file or its contents?
using System;
using System.IO;
namespace ...
0
votes
1answer
84 views
Porters Stemming Algorithm Javascript, How to
Below is Porters Stemming Algorithm for JavaScript which I have taken from here(http://tartarus.org/~martin/PorterStemmer/js.txt).
I would like to be able to use the algorithm by simply calling:
var ...
0
votes
1answer
148 views
Lancaster Or Porter
Which of lancaster or porter is best for Stemming ?
Is Porter stemmer too old for stemming?
0
votes
3answers
810 views
Stop words and stemmer in java
I'm thinking of putting a stop words in my similarity program and then a stemmer (going for porters 1 or 2 depends on what easiest to implement)
I was wondering that since I read my text from files ...
0
votes
1answer
66 views
MySQL routine for porter or porter 2 stemming algorithm
I'm looking for a port of the Porter or Porter 2 stemming algorithm written as a MySQL routine (user defined function). Has anybody seen one?
Thanks very much!
0
votes
1answer
127 views
another porter stemming algorithm implementation question?
I am trying to implement porter stemming algorithm, but i am having difficualties understanding this point
Step 1c
(*v*) Y -> I happy -> happi
...
0
votes
1answer
165 views
a question in porter stemming algorithm?
i am trying to implement porter stemming algorithm, but i stumbled at this point
where the square brackets denote
arbitrary presence of their contents.
Using (VC){m} to denote VC repeated m
...
0
votes
1answer
160 views
French stemmer in php?
Anyone knows an implementation of a french stemmer in PHP ? Could not find one ...
This link has a collection of usefull resoursces however nothing in php
...
0
votes
1answer
132 views
Porter Stemmer algorithm question
I am implementing a search application.
Corpus is large text documents.
During file process i'm tokenizing all the words and calling Porter Stemmer algorithm
Step1 ...