Exibição Pura
Adicione blocos de exibição somente leitura às interfaces de anotação do Potato — texto formatado, instruções, divisores e orientações contextuais que os anotadores não podem editar nem interagir.
O tipo pure_display mostra conteúdo aos anotadores sem coletar nenhuma anotação. Use-o para cabeçalhos de seção, instruções inline ou orientações formatadas entre os campos de anotação.
Configuração Básica
yaml
annotation_schemes:
- name: "instructions_header"
description: "Please read the text carefully and answer the following questions."
annotation_type: "pure_display"Opções de Configuração
| Campo | Tipo | Obrigatório | Descrição |
|---|---|---|---|
name | string | Sim | Identificador único (não usado na saída) |
description | string | Sim | Conteúdo a exibir |
annotation_type | string | Sim | Deve ser "pure_display" |
Exemplos
Cabeçalho de Seção
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
- NeutralDivisor Entre Seções
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: 5Instruções Condicionais
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
- SSNLembrete de Diretrizes
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
- UnclearFormato de Saída
As anotações de exibição pura não são incluídas na saída, pois não coletam nenhum dado.
Casos de Uso
- Cabeçalhos de seção - Organizar tarefas de anotação complexas
- Instruções - Fornecer orientação específica ao contexto
- Avisos - Destacar considerações importantes
- Divisores - Separar visualmente diferentes seções de anotação
- Exemplos - Mostrar anotações de exemplo inline
- Diretrizes - Lembrar os anotadores dos critérios principais
Boas Práticas
- Seja conciso - Blocos longos de texto podem reduzir a velocidade da anotação
- Use formatação - Markdown (negrito, listas, cabeçalhos) melhora a legibilidade
- Posicionamento estratégico - Coloque as instruções imediatamente antes das perguntas relevantes
- Não exagere - Blocos de exibição em excesso desorganizam a interface