上传文件至 /

This commit is contained in:
2026-06-11 15:54:24 +08:00
parent a06ffd1068
commit 2001f11dd1

28
w.py Normal file
View File

@@ -0,0 +1,28 @@
<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>