Skip to content

表示専用

指示、ヘッダー、フォーマットされたガイダンスの表示専用コンテンツ。

表示専用

pure_displayタイプは、アノテーションを収集せずにアノテーターにコンテンツを表示します。セクションヘッダー、インライン指示、またはアノテーションフィールド間のフォーマットされたガイダンスに使用します。

基本設定

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. 過度に使用しない - 表示ブロックが多すぎるとインターフェースが乱雑になる