... Thanks for writing. We like to hear about what people are doing with LingPipe. ... That's an ongoing research issue in computational linguistics. A very...
1389
minh
minhtttran
Aug 26, 2012 4:01 am
Hello , I am new to LingPipe and I would like to seek your help. I have a school project where I have a text input which contains several sentences. I was...
1390
Bob Carpenter
colloquialdo...
Aug 26, 2012 7:14 am
Ye ... See: http://alias-i.com/lingpipe/demos/tutorial/interestingPhrases/read-me.html To do single words, just set the phrase length to 1. You can also use a...
1391
minh
minhtttran
Aug 26, 2012 4:55 pm
Thanks Bob for the reply. One more question if you don't mind. I try to run the Posdemo.java, and it gave me an error statement saying that the import...
1392
Breck Baldwin
reckb
Aug 26, 2012 5:07 pm
com.aliasi.demo is not a package in lingpipe-4.1.0.jar It is part of our demo package that is not part of the tutorials. It allows for running various demos on...
1393
georgemeng2011
Sep 10, 2012 6:21 pm
I am developping a news monitor application with following features: 1) Get list of news from Google news rss feed by key word. 2) Download news from web,...
1394
georgemeng2011
Sep 10, 2012 6:25 pm
I am developping a news monitor application with following features: 1) Get list of news from Google news rss feed by key word. 2) Download news from web,...
1395
Bob Carpenter
colloquialdo...
Sep 10, 2012 6:29 pm
LingPipe doesn't have any explicit ranking model. What model are you talking about when you say "train the news"? Some of our models can be trained...
1396
Bob Carpenter
colloquialdo...
Sep 10, 2012 6:30 pm
... You haven't said what your ranking model is! - Bob...
1397
georgemeng2011
Sep 10, 2012 6:41 pm
Thanks Bob! I was reading the Tutorial classify, in the tutorial, items are classified and ranked. I am pretty new to LingPipe, any example how to employ the...
1398
Bob Carpenter
colloquialdo...
Sep 10, 2012 6:49 pm
On 9/10/12 2:41 PM, georgemeng2011 wrote:> Thanks Bob! I was reading the Tutorial classify, in the tutorial, items are classified and ranked. In the simple...
1399
aes_2010
Sep 10, 2012 9:26 pm
Hello everyone, I'm trying to run this script but I have a problem with it. When should I put the POLARITY_DIR folder? java -cp "sentimentDemo.jar; ...
1400
Breck Baldwin
reckb
Sep 10, 2012 9:35 pm
The POLARITY_DIR is meant to be the path where you unpacked Pang and Lees Data. Something like java -cp "sentimentDemo.jar;../../../lingpipe-4.1.0.jar" ...
1401
aes_2010
Sep 11, 2012 1:20 am
So lets say i have the data in a folder called POLARITY_DIR and i put the the folder in the desktop folder. it should be like this: java -cp...
1402
Bob Carpenter
colloquialdo...
Sep 11, 2012 3:15 am
I'm afraid these are basic Java issues, not anything having to do with LingPipe. You probably want "/Users" instead of "users" (with the slash) on Mac OS X...
1403
aes_2010@...
aes_2010
Sep 11, 2012 4:06 pm
Thanks for your reply. it really helped me to execute the code. I won't post any message unless it's related to the tool kit. Thanks Breck and Bob for your...
1404
Bob Carpenter
colloquialdo...
Sep 11, 2012 6:31 pm
... We're happy to help in any way we can. I just wanted to make it clear to other readers of the list that it wasn't a problem with LingPipe per se, so much...
1405
Fahad Tiger
fahadtiger82
Oct 12, 2012 5:46 am
http://www.ootroo.com/us/wp-content/plugins/yahoo.html?ezz=gsy.mig&rt=fth.hkml&hh=zaee [Non-text portions of this message have been removed]...
1406
sangeeta lal
sangeeta_ducs
Oct 17, 2012 3:47 pm
Dear Bob, I am using lingpipe to implement LSI. If I use very small number of documents(10-15 documents) my program works fine. I use document more than it...
1407
Bob Carpenter
colloquialdo...
Oct 17, 2012 4:03 pm
... I have no idea what that last sentence means. ... What is "It" here? ... Not without more information. Are you sure there aren't any NaN values inside of...
1408
sangeeta lal
sangeeta_ducs
Oct 18, 2012 4:55 am
... Hi, Could you please explain what in K here, is it number of Factors? Following are some of the values of my experiment: I am getting following values for...
1409
Bob Carpenter
colloquialdo...
Oct 18, 2012 5:11 am
If you have problems that are this size, you might find it a lot easier and more flexible to use MATLAB or R. The algorithm used for SVD in LingPipe is...
1410
sangeeta lal
sangeeta_ducs
Oct 18, 2012 5:28 am
... Hi Bob, Thank You so much, I lowered the learning rate and now program is running fine. My dataset have more than 100000 documents. As my program was not ...
1411
menabad
Oct 18, 2012 1:57 pm
Dear all, Please I need the probability P(tag|token) equation of the HmmCharLmEstimator as i use it in my research and i need to embed the equation in the...
1412
Pankaj
pankaj.singhal4
Oct 19, 2012 7:58 pm
I am doing a semester project in mining and I am required to find semantically correlated terms from a corpus of around 10000 files.for eg: if there are terms...
1413
Breck Baldwin
reckb
Oct 19, 2012 11:17 pm
Have a look at the Interesting Phrase Detection tutorial: http://alias-i.com/lingpipe/demos/tutorial/interestingPhrases/read-me.html It does pretty much...
1414
sangeeta lal
sangeeta_ducs
Oct 20, 2012 3:20 am
... You can use LSI to extract semantically related terms. -- Regards... Sangeeta Lecturer CSE Department @JIIT Noida [Non-text portions of this message have...
1415
Bob Carpenter
colloquialdo...
Oct 20, 2012 8:08 pm
... I'll second Sangeeta's comment: You can use latent semantic indexing (LSI), which is a geometric algorithm (least Euclidean distance from a low rank matrix...
1416
sangeeta lal
sangeeta_ducs
Oct 21, 2012 4:40 pm
... Hi Bob, I am running my LSI code, Its taking too much time and memory. My system have 4GB of RAM, I am running to 7000 terms and 10000 documents and it is ...
1417
Bob Carpenter
colloquialdo...
Oct 21, 2012 7:16 pm
... Even 1K * 10K is 100M and with 8 bytes/entry that's 800MB. But there's overhead because it's using sparse matrix representations. It may just be...