我是 UIMA 的新手,目前我陷入了以下情况。
如何对从 UIMA 中的注释器获得的不同标记集进行分类和关联?就像 {John,Smith} 之类的个人实体令牌集名称和 {car,home} 之类的资产实体集。我想编写规则来分类,如下面的 xml。
<person>
<name>john</name>
<asset>car</asset>
</person>
and
<person>
<name>Smith</name>
<asset>home</asset>
</person>
提前感谢您的帮助..