-
StringDistance, StringDistanceLearner, SoftDictionary & etc.
2009-10-15 13:44:04 UTC by thingumajig
-
I get the following error while using secondstring:
"execute failed: need exactly one source in clusterMode"
my sourcecode:
import com.wcohen.ss.*;
SoftTokenFelligiSunter SFS = new SoftTokenFelligiSunter();
String o1 = "hallo";
String o2 = "hello";
double ergebnis = SFS.score(SFS.prepare(o1), SFS.prepare(o2));
Is there anywhere an example...
2009-09-27 15:53:01 UTC by pfaltin
-
On both a Mac and Windows system, when I tried to run secondstring, I get the same error. Am I missing something basic?
>java -jar secondstring-20060615.jar
Failed to load Main-Class manifest attribute from secondstring=20060615.jar
On Windows XP I'm running jre-6u13.
2009-05-24 16:58:03 UTC by slt60
-
Jaccard.score(s1, s2) returns NaN if both strings have zero tokens. this happens when both strings are empty, or the tokenizer doesn't find any tokens (NGram tokenizer with minNGramSize > size of the string)
It should *probably* return 0.
2009-04-08 01:35:20 UTC by nobody
-
Hello,
Many thanks for making secondstring available.
I came across secondstring because I am trying to build citeseerx which refers to it. Citeseerx fails to compile and I think part of the reason is that the jar for secondstring is not included. But when I download it from here and try again I still get errors. Some of the imports of secondstring are wildcarded so I cannot see all the...
2008-12-18 22:46:15 UTC by apm42gpl
-
Hello,
I have list of jobs with job descriptions and job titles. These jobs are searched by giving a keyword to a search engine. Example of keyword and job description is given at the end.
I want to check the job relevancy?I want to find which "job description" is relevant to the user's "keyword". Can anybody tell me which metric is suitable for such type of...
2008-06-10 17:33:31 UTC by tnaz
-
Line 66 of AffineGap has a '=' where it should probably be a '-'.
The line in question is:
it.get(i=1,j-1) + matchScore
and i is one of the parameters to the method containing that line.
2008-04-09 13:35:09 UTC by nobody
-
I've encountered problems with Level2 not accurately scoring bags of different lengths. I'm including a patch which solved the problem for me.
The problem presented itself when Level2.score(s, t) was called with size(s) < size(t). For example:
s = {'Frances', 'Fyfe'}
t = {'Mary', 'Frances', 'Fyfe'}
Level2.score(s,t) -> 1.0
level2.score(t,s) -> 0.83
The problem is, I believe, that...
2008-02-28 20:51:49 UTC by nobody
-
pdlug committed patchset 62 of module secondstring to the SecondString CVS repository, changing 46 files.
2007-02-13 18:45:22 UTC by pdlug
-
pdlug committed patchset 61 of module secondstring to the SecondString CVS repository, changing 39 files.
2007-02-03 00:51:39 UTC by pdlug