UIMA MARK 注释在 CONTAINS 中

uima MARK annotation in CONTAINS

以下标线到M_Subordinator(同M_Line)

(Line{CONTAINS(Phrase), CONTAINS(Subordinator) -> MARK(M_Subordinator)}){-> MARK(M_Line)};

如何将下属标记为 M_Subordinator?
因为我需要分别标记Phrase和Subordinator,对整场比赛不感兴趣

也许是这样的:

Line{CONTAINS(Phrase), CONTAINS(Subordinator) -> M_Line} -> {Subordinator{ -> M_Subordinator};};

此规则匹配每个 Line 注释,如果此 Line 包含 Phrase 和 Subordinator 注释,则此 Line 的注释类型为 M_Line。此外,内联规则作为操作执行:内联规则匹配当前匹配的 Line 注释中的所有 Subordinator 注释,并使用 M_Subordinator.

类型对其进行注释