pyStatParser
pyStatParser copied to clipboard
Simple Python Statistical Parser
Hi, I am trying to port this into another language (GDScript). The other language deals differently with file opening, writing, etc, and also implements data types a bit differently (lists...
Hi, I have a dataset that the speech are changes to the text data and they are wrong sentences and my sentences must do corrected. do your parser repair my...
Hi, I cloned the master branch and tried the example in README, but encountered the following error. Could anyone know how to fix it? Thanks! Python 2.7.12 (default, Jul 18...
Hi, I can't seem to install the library from PyPi using pip3. I think I've tried all the possible combinations of pyStatParser name to install it via pip3. What's the...
Hi Please could anyone help with why I get this error when I run the example code? Would REALLY appreciate a response Thank you!
Supposed to have ``` from nltk.grammar import CFG grammar = CFG.fromstring(""" # Grammatical productions. S -> NP VP NP -> Det N PP | Det N VP -> V NP...
Noticed when my installation tried to write to /usr/local/lib/python2.7/dist-packages/stat_parser/temp ``` Building the Grammar Model --------------------------------------------------------------------------- OSError Traceback (most recent call last) in () 4 os.environ['DISPLAY'] = 'localhost:10.0' 5 sent =...
This is a great parser, thanks for sharing it! Just wondering if you could include or link to a list of all the part-of-speech tags used and their descriptions (similar...
`parser.norm_parse(text)` returns `None` for some sentences, hence `parser.parse(text)` crashes because is uses `norm_parse` internally. The string `"this is bad"` falls into that category and cannot be parsed with `norm_parse`, but...