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
The SD parser currently only separates tokens by whitespace, so that e.g. the last token of
~~~ sdparse
foo bar.
dep(foo, bar)
~~~
is bar., making the above break as the system can't find the token bar (without terminal dot). This appears to be a common source of error in manually entered SD analyses.
The possibility of doing e.g. PTB-like tokenization of input should be at least considered.
The text was updated successfully, but these errors were encountered:
The SD parser currently only separates tokens by whitespace, so that e.g. the last token of
is
bar.
, making the above break as the system can't find the tokenbar
(without terminal dot). This appears to be a common source of error in manually entered SD analyses.The possibility of doing e.g. PTB-like tokenization of input should be at least considered.
The text was updated successfully, but these errors were encountered: