Skip to content

纯显示

仅显示内容,用于说明、标题和格式化指导。

纯显示

纯显示类型向标注者显示内容但不收集任何标注。用于分节标题、内联说明或标注字段之间的格式化指导。

基本配置

yaml
annotation_schemes:
  - name: "instructions_header"
    description: "Please read the text carefully and answer the following questions."
    annotation_type: "pure_display"

配置选项

字段类型必填描述
namestring唯一标识符(不用于输出)
descriptionstring要显示的内容
annotation_typestring必须为 "pure_display"

示例

分节标题

yaml
annotation_schemes:
  # Instructions section
  - name: "instructions"
    description: "## Instructions\n\nRead the text below and answer the questions that follow."
    annotation_type: "pure_display"
 
  # First annotation task
  - name: "sentiment"
    description: "What is the overall sentiment?"
    annotation_type: "radio"
    labels:
      - Positive
      - Negative
      - Neutral

分节分隔符

yaml
annotation_schemes:
  - name: "classification"
    description: "Classify the document type"
    annotation_type: "radio"
    labels:
      - News
      - Opinion
      - Analysis
 
  # Visual divider
  - name: "divider"
    description: "---\n\n**Quality Assessment**\n\nNow evaluate the quality of the content."
    annotation_type: "pure_display"
 
  - name: "quality"
    description: "Rate the writing quality"
    annotation_type: "likert"
    size: 5

条件说明

yaml
annotation_schemes:
  - name: "contains_pii"
    description: "Does this text contain personal information?"
    annotation_type: "radio"
    labels:
      - "Yes"
      - "No"
 
  - name: "pii_instructions"
    description: "**If you selected Yes above**, please identify all personal information in the next section."
    annotation_type: "pure_display"
 
  - name: "pii_types"
    description: "What types of PII are present?"
    annotation_type: "multiselect"
    labels:
      - Name
      - Email
      - Phone
      - Address
      - SSN

指南提醒

yaml
annotation_schemes:
  - name: "reminder"
    description: "**Remember:**\n- Focus on the main claim, not supporting details\n- Consider the author's intent\n- When in doubt, select 'Unclear'"
    annotation_type: "pure_display"
 
  - name: "stance"
    description: "What is the author's stance on the topic?"
    annotation_type: "radio"
    labels:
      - Support
      - Oppose
      - Neutral
      - Unclear

输出格式

纯显示标注不会包含在输出中,因为它们不收集任何数据。

使用场景

  • 分节标题 - 组织复杂的标注任务
  • 说明 - 提供特定上下文的指导
  • 警告 - 突出重要注意事项
  • 分隔符 - 视觉分隔不同的标注部分
  • 示例 - 内联显示标注示例
  • 指南 - 提醒标注者关键标准

最佳实践

  1. 保持简洁 - 长段文字会减慢标注速度
  2. 使用格式化 - Markdown(加粗、列表、标题)提高可读性
  3. 策略性放置 - 将说明放在相关问题的正前方
  4. 不要过度使用 - 太多显示块会使界面混乱