Files
homework-4-3/w.py
2026-06-11 15:54:24 +08:00

28 lines
938 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<View>
<Text name="text" value="$text"/>
<Choices name="sentiment" toName="text" choice="single-radio" showInline="true">
<Choice value="positive"/>
<Choice value="negative"/>
<Choice value="neutral"/>
</Choices>
</View>
<Text> 显示待标注文本
<Choices> 单选/多选
choice="single-radio" 单选必选一个
showInline="true" 横排显示
<Choices name="topics" toName="text" choice="multiple">
<Choice value="科技"/>
<Choice value="财经"/>
<Choice value="体育"/>
<Choice value="娱乐"/>
<Choice value="教育"/>
</Choices>
<View>
<Labels name="label" toName="text">
<Label value="人名" background="#FF0000"/>
<Label value="地名" background="#00FF00"/>
<Label value="机构" background="#0000FF"/>
<Label value="时间" background="#FFFF00"/>
</Labels>
<Text name="text" value="$text"/>
</View>