You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
So I use pycorenlp https://github.com/smilli/py-corenlp package to generate the parse tree and try to pass it back to your package. An example of the output parse tree is like this:
Traceback (most recent call last):
File "svo.py", line 213, in
tre = svo.process_parse_tree(next(root_tree))
TypeError: unicode object is not an iterator
So could you tell me what is the format is the root_tree, so I can transform my other output into your format and continue to run the program, thanks!
The text was updated successfully, but these errors were encountered:
Hi,
It's an iterator object. But I'll see if i might extend it to be able to parse raw trees as well, however I'll see if I can find which format which is most widely used.
Hi,
I am trying to run your program to get the SVO structure of a sentence. No matter what I have tried, I continue to get the following error:
So I use pycorenlp https://github.com/smilli/py-corenlp package to generate the parse tree and try to pass it back to your package. An example of the output parse tree is like this:
which is a unicode.
Then I got the following error:
So could you tell me what is the format is the root_tree, so I can transform my other output into your format and continue to run the program, thanks!
The text was updated successfully, but these errors were encountered: