Search the web
Sign In
New User? Sign Up
LingPipe
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 688 - 717 of 777   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
688
I'm interested in sentimental analysis and started few tests of detection. Is it possible do sentimental analysis comparatively? For example: "Java is better...
Gustavo Arjones
gustavoarjones
Offline Send Email
May 10, 2009
5:07 am
689
Hello, My question is similar to Gustavo's (and I closely looked at the sentiment detection tutorial a looong time ago). How well does LingPipe detect...
Otis Gospodnetic
otis_gospodn...
Offline Send Email
May 11, 2009
12:25 am
690
... I'm afraid there's nothing built into LingPipe that'll let you do this kind of comparative sentiment extraction out of the box. But there are some...
Bob Carpenter
colloquialdo...
Offline Send Email
May 11, 2009
5:04 pm
691
We just released a patch for LingPipe 3.8. As usual, it's available from the home page: http://alias-i.com/lingpipe There are only two changes: 1. Bug...
Bob Carpenter
colloquialdo...
Offline Send Email
May 12, 2009
5:04 pm
692
We received a bug report that the SVD demo program in $LINGPIPE/demos/tutorial/svd/src/Lsi.java throws a null pointer exception as of LingPipe 3.8. I...
Bob Carpenter
colloquialdo...
Offline Send Email
May 12, 2009
8:45 pm
693
Dear all, could somebody help me with the code below. I want to extract author list from Medline citation. thanks in advance for any suggestions. Cheers,...
andrej.kastrin
Offline Send Email
May 17, 2009
10:18 am
694
Dear All I've just start learning LingPipe for my project. My project focus on Sentiment Analysis. Now I want to try using new set of movie review from...
salinkate
Offline Send Email
May 17, 2009
7:45 pm
695
... You're on the right track -- you just need to change the handle() method to handle ciations and then extract the author list from the citation. public void...
Bob Carpenter
colloquialdo...
Offline Send Email
May 18, 2009
5:14 pm
696
... Starting from our sentiment tutorial, you only need to rewrite the bit that pulls text out of the file-based representations. Alternatively, you can just...
Bob Carpenter
colloquialdo...
Offline Send Email
May 18, 2009
5:19 pm
697
Thanks Bob, it works like a charm. Best, Andrej...
andrej.kastrin
Offline Send Email
May 19, 2009
3:29 pm
698
Thanks for the bug report: ... ... It should indeed be "length + start". I patched it for the next release. This is what I get for starting the API with...
Bob Carpenter
colloquialdo...
Offline Send Email
Jun 1, 2009
5:47 pm
699
I have a training set of 45K documents for 1000 categories and don't want users of my application to have to wait while the classifier is trained every time...
your_69_guy
Offline Send Email
Jun 9, 2009
8:04 pm
700
... I have no idea of how Daffodil will deal with java serialization but you can serialize with the AbstractExternalizable class for any of the classifiers...
Breck Baldwin
reckb
Offline Send Email
Jun 9, 2009
10:32 pm
701
... This will depend on which classifier you use. All of them either implement java.io.Serializable, or they implement com.aliasi.util.Compilable. The...
Bob Carpenter
colloquialdo...
Offline Send Email
Jun 10, 2009
5:49 am
702
Thanks Bob, the storing of the classifier into a blob field works great. I am having a little trouble reading the object back out of the database though. I...
your_69_guy
Offline Send Email
Jun 12, 2009
2:43 pm
703
I fiddled with the code some more and got it to work. here is the working code... note : this is extremely fast especially since the blob created from the...
your_69_guy
Offline Send Email
Jun 12, 2009
3:13 pm
704
I love it when people solve their own problems before I wake up in the morning! A good way to figure out what you've got serialized is to do this: Object obj =...
Bob Carpenter
colloquialdo...
Offline Send Email
Jun 12, 2009
5:09 pm
705
Mike just found (and patched) a bug in our scored precision recall evalaution implementation. It was using a TreeSet with a score-based comparator instead of a...
Bob Carpenter
colloquialdo...
Offline Send Email
Jul 8, 2009
5:22 pm
706
Hello, i have installed Lingpipe but if i try to run the demos, it doest not work. can someone help me? C:\>cd LingPipeDir C:\LingPipeDir>cd lingpipe-3.8.1 ...
YORO BA
yo_ba
Offline Send Email
Jul 9, 2009
9:16 am
707
I believe there are multiple demos packed within one build file. The tutorial tells you which goal to run (hint: long names). Hope that helps, Alex. Personal...
Alexandre Rafalovitch
arafalov
Offline Send Email
Jul 9, 2009
11:00 am
708
... Yes, you need to run the tutorials from their own directories. So the cd you need is: % cd LingPipeDir\lingpipe-3.8.1\demos\tutorial\wordSense % ant...
Bob Carpenter
colloquialdo...
Offline Send Email
Jul 9, 2009
6:40 pm
709
Thanks you, it seems to work. I become know an error output, but it is know a Java problem. ""Error occured during initializing of Java Virtual machine Could...
BA YORO
yo_ba
Offline Send Email
Jul 10, 2009
8:44 am
710
... That error occurs when you specify a larger heap size (memory space allocated for objects in Java) for the JVM (Java virtual machine) than your hardware...
Bob Carpenter
colloquialdo...
Offline Send Email
Jul 10, 2009
8:10 pm
711
Dear all, Is it possible to get the key phrases which are used for decide whether the input is positive or negative review? I need to show those key for each...
salinkate
Offline Send Email
Jul 14, 2009
11:37 pm
712
... There are lots of things to try. Keep in mind that our sentiment demo isn't the only way to implement sentiment detection in LingPipe. The demo isn't...
Bob Carpenter
colloquialdo...
Offline Send Email
Jul 15, 2009
4:14 pm
713
how do I get the weight of each word in the categories when I trained a Naive Bayes classifier or logistic regression classifier. after I compiledTo the...
jun li
junli.cn@...
Send Email
Jul 16, 2009
2:31 am
714
... For naive Bayes, Set<String> wordSet = ... File modelFile = ... LMClassifier cl ____= (LMClassifier) AbstractExternalizable.readObject(modelFile); for...
Bob Carpenter
colloquialdo...
Offline Send Email
Jul 16, 2009
5:27 pm
715
thanks. if I want to print lowercased and stemmed word with probabilities in every category, is the following code right? NaiveBayesClassifier classifier = new...
jun li
junli.cn@...
Send Email
Jul 17, 2009
6:50 am
716
... At some point, you need to train the classifier. - Bob Carpenter Alias-i...
Bob Carpenter
colloquialdo...
Offline Send Email
Jul 20, 2009
5:02 pm
717
My question is related to EM. I was wondering how can it be used to classify and label a new set of unseen documents. If I have a set of documents that needs...
wael.jabr
Offline Send Email
Jul 22, 2009
7:59 pm
Messages 688 - 717 of 777   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help