-
Hi
I've been trying to figure out why i'm having a null pointer exception thrown by jwnl initialize method.
java.lang.NullPointerException
at net.didion.jwnl.JWNL.getParams(Unknown Source)
at net.didion.jwnl.JWNL.getParams(Unknown Source)
at net.didion.jwnl.JWNL.getParams(Unknown Source)
at net.didion.jwnl.JWNL.createElementFromNode(Unknown Source)
at...
2008-12-08 16:34:37 UTC in JWNL (Java WordNet Library)
-
Hi
is this project still on-going?
is there an api documentation ?.
2008-05-29 14:43:01 UTC in HotSAX
-
Hi
I was trying to use the HTMLCleaner to remove HTML tags from a simple page. The result looked SIMILAR at the original page, i.e.: no cleaning done
It's the first time i'm using it.
HtmlCleaner htmlCleaner = new HtmlCleaner(//page url goes here....);
try{
htmlCleaner.clean();
htmlCleaner.writeXmlToFile("res.txt");
}
catch(Exception e){.
2008-05-29 14:17:37 UTC in HtmlCleaner
-
Hi
Is it possible to define a context free grammar for parsing in opennlp? for e.g: can i define my own tags to define my phrases, S->NP|VP (noun phrase and verb phrase make up a sentence)?.
2008-05-29 13:17:55 UTC in OpenNLP
-
Hi
I had the same problem too using IE. The models were correctly downloaded after i used mozilla firefox. you may give firefox a try!
2008-05-16 05:42:50 UTC in OpenNLP
-
Thanks for the clarification..it makes more sense now!
-ashwin.
2008-05-05 15:42:56 UTC in Natural Language Toolkit
-
(i'm replying to myself!)
but i THINK i understood why V-> VP.NP is correct (as it is in the book)
so, the edge 1-2 is a V, and we know (from prev knowledge that V indicates the beginning of a VP),
Now we are processing VP -> V NP. So, the consituent begins with VP (VP to the left of the dot), but we still need to find NP (placed at the rough of the dot)
Still, I'm unsure...
2008-05-02 09:46:07 UTC in Natural Language Toolkit
-
Hi
I was reading the nltk book, section 9.3 (pg 232)
I am confused about the notations for incomplete constituents in Chart 9.4
should it be:
1) V -> VP . NP or
2) VP-> V . NP
In my opinion, it should be 2) since VP starts with V ("likes"), but an NP has yet to be found (in order to complete the VP).
Please advise.
Also, is there an errata for the book
thanks...
2008-05-02 09:31:36 UTC in Natural Language Toolkit
-
Hi
are there any differences between these 2 POSdictionaries:
parser/tag.bin.gz and parser/tagdict?
From what I found, there aint any, since the same POS Tags were produced with either of them - unless I'm doing something wrong.
2008-05-01 12:49:43 UTC in OpenNLP
-
thanks Steven, yes that's i was also thinking about defaulting all"unknown" types to "nouns", unless NLTK has some other smarter ways?.
2008-05-01 10:31:30 UTC in Natural Language Toolkit