순수 표시
Potato 어노테이션 인터페이스에 읽기 전용 표시 블록을 추가합니다 — 어노테이터가 편집하거나 상호작용할 수 없는 서식 있는 텍스트, 지침, 구분선, 맥락 안내입니다.
pure_display 유형은 어노테이션을 수집하지 않고 어노테이터에게 콘텐츠를 보여 줍니다. 섹션 머리글, 인라인 지침, 어노테이션 필드 사이의 서식 있는 안내에 사용하세요.
기본 구성
yaml
annotation_schemes:
- name: "instructions_header"
description: "Please read the text carefully and answer the following questions."
annotation_type: "pure_display"구성 옵션
| 필드 | 유형 | 필수 | 설명 |
|---|---|---|---|
name | string | 예 | 고유 식별자(출력에는 사용되지 않음) |
description | string | 예 | 표시할 콘텐츠 |
annotation_type | string | 예 | 반드시 "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출력 형식
순수 표시 어노테이션은 데이터를 수집하지 않으므로 출력에 포함되지 않습니다.
사용 사례
- 섹션 머리글 - 복잡한 어노테이션 작업을 정리합니다
- 지침 - 맥락에 맞는 안내를 제공합니다
- 경고 - 중요한 고려 사항을 강조합니다
- 구분선 - 서로 다른 어노테이션 섹션을 시각적으로 분리합니다
- 예시 - 예시 어노테이션을 인라인으로 보여 줍니다
- 가이드라인 - 핵심 기준을 어노테이터에게 상기시킵니다
모범 사례
- 간결하게 작성하세요 - 긴 텍스트 블록은 어노테이션 속도를 늦출 수 있습니다
- 서식을 사용하세요 - 마크다운(굵게, 목록, 머리글)은 가독성을 높입니다
- 전략적으로 배치하세요 - 관련 질문 바로 앞에 지침을 두세요
- 남용하지 마세요 - 표시 블록이 너무 많으면 인터페이스가 복잡해집니다