我正在对GATE中的语料库进行手动注释。所以我已经在xml中创建了注释模式:
<element name="extragraphique">
<complexType>
<attribute name="kind" use="optional" value="other" >
<simpleType>
<restriction base="string">
<enumeration value="confusion_voyelle"/>
<enumeration value="confusion_consonne"/>
</restriction>
</simpleType>
</attribute>
</complexType>
</element>
</schema>
结果注释如下:
但是我想为一种注释类型(元素)注释更多功能(值)。这可能吗?声明另一个值不是一个选择,因为GATE只允许我选择一个功能值:
答案 0 :(得分:1)
我认为您需要向架构添加第二个属性:
<?xml version="1.0"?>
<schema xmlns="http://www.w3.org/2000/10/XMLSchema">
<element name="extragraphique">
<complexType>
<attribute name="kind" use="optional" value="other" >
<simpleType>
<restriction base="string">
<enumeration value="confusion_voyelle"/>
<enumeration value="confusion_consonne"/>
</restriction>
</simpleType>
</attribute>
<attribute name="confidence" use="optional" value="other" >
<simpleType>
<restriction base="string">
<enumeration value="low"/>
<enumeration value="high"/>
</restriction>
</simpleType>
</attribute>
</complexType>
</element>
</schema>
GATE屏幕截图:
GATE文档中的其他信息: