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

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

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 698 - 727 of 777   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
718
... If I understood the question properly, you have some labeled training data and some unlabeled training data, and you run EM. At that point, all you need to...
Bob Carpenter
colloquialdo...
Offline Send Email
Jul 22, 2009
8:47 pm
719
The ZScoreFeatureExtractor class in 3.8.1 has a bug that misestimates features for sparse feature vectors. (Warning: very sparse feature vectors don't play...
Bob Carpenter
colloquialdo...
Offline Send Email
Jul 23, 2009
6:56 pm
720
That was indeed my question. Thanks My next question is how does each of the unseen documents get individually labeled of the class assigned (i.e. after...
wael.jabr
Offline Send Email
Jul 24, 2009
2:36 am
721
... If you're following the EM tutorial, you wind up with a classifier that assigns conditional probabilities to categories given texts. (Most of our...
Bob Carpenter
colloquialdo...
Offline Send Email
Jul 24, 2009
5:21 pm
722
LingPipe 3.8.2 is now available from the LingPipe home page: http://alias-i.com/lingpipe This is a patch release, but includes lots of little utility methods...
Bob Carpenter
colloquialdo...
Offline Send Email
Jul 28, 2009
6:08 pm
723
... I am not sure I follow. Can you point to the documentation on this? I don't seem to know how to generate this file. ... I can't find these commands in the...
wael.jabr
Offline Send Email
Jul 29, 2009
9:00 pm
724
That was the sample code. You can also look in the other tutorials for examples of code that stores models. The model's serializalble, so you can serialize...
Bob Carpenter
colloquialdo...
Offline Send Email
Jul 29, 2009
9:18 pm
725
Dear all, I do the sentiment analysis based on PolarityHierarchical I've already generated model for subjectivity and polarity. I got bestCategory of each...
salinkate
Offline Send Email
Aug 4, 2009
10:04 am
726
... It's easy, but requires a bit of coding. The easiest thing to do would be to replace the method subjectiveSentences(String) with something that returns a...
Bob Carpenter
colloquialdo...
Offline Send Email
Aug 4, 2009
6:03 pm
727
I tried to do as you suggest String review = "xxxxx. bbbbbb. eeee."; String[] sentences = review.split("\\."); BoundedPriorityQueue pQueue = new...
salinkate
Offline Send Email
Aug 5, 2009
10:30 am
Messages 698 - 727 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