berkeleyparser
berkeleyparser copied to clipboard
Automatically exported from code.google.com/p/berkeleyparser
Make it into markdown, easier to read.
Where can I find documentation of the file formats used? Unfortunately I neither can find one for the `.gr` files in the repo nor for the file formats generated by...
Consider the sentence, `"May the odds be ever in your favor"` and version 1.7 in this repository: ``` # May the odds be ever in your favor (()) # may...
License?
Hello! What is the license and copyright associated with this code?
In the readme a perl script named "getSignature" is mentioned to get the signatures for the pos-tagging of unknown words. This script is not in the repository though. Where could...
Grammar.writeData was printing out grammars with rules that sum to more than one. This was apparently for two reasons: - It was intentionally printing out the max-closed unary rules instead...
``` In the README it is advised to use a grammar with 5 split-merge cycles when parsing non-WSJ text. Since most of the text in the universe is actually not...
``` Currently the load method requires a file name. This could be minimally refactored to take an input stream as an option instead: e.g. public static ParserData Load(InputStream inStream) {...
``` What steps will reproduce the problem? public Parser getParser(String grammarFile, Options opts) { double threshold = 1.0; ParserData pData = ParserData.Load(grammarFile); Grammar grammar = pData.getGrammar(); Numberer.setNumberers(pData.getNumbs()); Parser parser =...
``` What steps will reproduce the problem? Have two spaces or more between words in input example: echo "a b" | java -jar berkeleyParser.jar -gr eng_sm5.gr java.lang.StringIndexOutOfBoundsException: String index out...