Michael Wayne Goodman
Michael Wayne Goodman
> are the relation types constrained or somehow "standardized" by OMW, the GWA or others? See https://github.com/globalwordnet/schemas/ > I'm tempted to explore "masking" relationships, whereby a lexicon can block some...
A non-scope-resolved structure is ambiguous over one or more scope-resolved structures. To *iterate over scope readings* is to expand the ambiguous structure to those resolved structures and iterate over them...
> Yes, the first part was already completely clear to me. The second part is not so much. Maybe some pseudocode would help? ```python >>> m = simplemrs.load(...) # an...
Possibly, yes, but I'm concerned about two things: - Does it run with a modern version of Java? (I haven't tested) - Koller's & Thater's work with MRS used a...
Thanks for testing. I'm not sure about the `term-prolog` codec, but maybe it could be added. If it accepts the MRS-Prolog codec output without ICONS, then another problem is that...
Forgot to mention that this would be computed when a user creates a `Wordnet` object and not permanently stored in the database. This is because the temporary table becomes invalid...
The 2-seconds to build climbs quite a bit when many lexicons are loaded. When all of OMW is added, it can be over 10 seconds. Using the SQLite pragma for...
> Is that the expected behaviour? Yes. By [default](https://pydelphin.readthedocs.io/en/latest/api/delphin.interface.html#delphin.interface.Response.tokens), the "internal" tokens are returned. If you provide `tokenset='initial'` it will instead give you the "initial" tokens, which have the POS...
I will close this as it looks like the question is answered.
It's not abnormal, but it is under-documented. By default, the string form of a `Derivation` object (as you'd get from `print(d)`) calls [UDFNode.to_udf()](https://pydelphin.readthedocs.io/en/latest/api/delphin.derivation.html#delphin.derivation.UDFNode.to_udf) and disables indentation: https://github.com/delph-in/pydelphin/blob/77fc995f1208a06c9eafd18c2218851fb45d8eac/delphin/derivation.py#L70-L71 What you want...