Replies: 1 comment 3 replies
-
Is this for speedup or another purpose? In case it is for speedup:
This is currently done when creating the expression for all the categories. |
Beta Was this translation helpful? Give feedback.
-
Is this for speedup or another purpose? In case it is for speedup:
This is currently done when creating the expression for all the categories. |
Beta Was this translation helpful? Give feedback.
-
@ampli During generation, I would like to delay expression lookup for wild-cards, until after pruning. For example,
this is \*
results inand then I look in the dict only for those words that have
(A+ or B+ or C+)
on them.The simplest way I can think of hacking this is to create a category with every possible link in it, and then, outside of LG, select only those words that have the right connector.
For more complicated things, I would want
which could be obtained with
the complicated thing \* \*
which would allow a wild-card category where each disjunct is just a single connector ...this is a \* \*
Is there some better way to do this? I fear the case where there might be hundreds of thousands of link types.
Right now, I'm only thinking about tacking these on the the end of a phrase that has already started, and not in the middle
Beta Was this translation helpful? Give feedback.
All reactions