Skip to content
यह पृष्ठ अभी आपकी भाषा में उपलब्ध नहीं है। अंग्रेज़ी संस्करण दिखाया जा रहा है।

Radio & Mehrfachauswahl

Einfach- und Mehrfachauswahl-Annotationstypen.

Radio & Mehrfachauswahl

Radio-Schaltflächen und Mehrfachauswahl-Kontrollkästchen sind die häufigsten Annotationstypen für Klassifizierungsaufgaben.

Radio-Schaltflächen

Radio-Schaltflächen verwenden, wenn Annotatoren genau eine Option auswählen sollen.

Grundkonfiguration

yaml
annotation_schemes:
  - annotation_type: radio
    name: sentiment
    description: "Select the sentiment of this text"
    labels:
      - Positive
      - Negative
      - Neutral

Mit Tastaturkürzeln

Tastaturkürzel für schnellere Annotation hinzufügen:

yaml
annotation_schemes:
  - annotation_type: radio
    name: sentiment
    description: "Select the sentiment"
    labels:
      - Positive
      - Negative
      - Neutral
    keyboard_shortcuts:
      Positive: "1"
      Negative: "2"
      Neutral: "3"

Mit Tooltips

Zusätzlichen Kontext für jede Option bereitstellen:

yaml
annotation_schemes:
  - annotation_type: radio
    name: sentiment
    description: "Select the sentiment"
    labels:
      - Positive
      - Negative
      - Neutral
    tooltips:
      Positive: "The text expresses happiness, satisfaction, or approval"
      Negative: "The text expresses sadness, anger, or disapproval"
      Neutral: "The text does not express strong emotion"

Mehrfachauswahl

Mehrfachauswahl verwenden, wenn Annotatoren mehrere Optionen wählen können.

Grundkonfiguration

yaml
annotation_schemes:
  - annotation_type: multiselect
    name: topics
    description: "Select all topics that apply"
    labels:
      - Politics
      - Sports
      - Technology
      - Entertainment
      - Science

Mit Mindest-/Höchstauswahl

Die Anzahl der Auswahlen einschränken:

yaml
annotation_schemes:
  - annotation_type: multiselect
    name: topics
    description: "Select 1-3 topics"
    labels:
      - Politics
      - Sports
      - Technology
    min_selections: 1
    max_selections: 3

Gestaltungsoptionen

Horizontales Layout

Optionen horizontal statt vertikal anzeigen:

yaml
annotation_schemes:
  - annotation_type: radio
    name: rating
    labels:
      - "1"
      - "2"
      - "3"
      - "4"
      - "5"
    display: horizontal

Benutzerdefinierte Farben

Beschriftungen Farben zuweisen:

yaml
annotation_schemes:
  - annotation_type: radio
    name: sentiment
    labels:
      - Positive
      - Negative
      - Neutral
    label_colors:
      Positive: "#22c55e"
      Negative: "#ef4444"
      Neutral: "#6b7280"

Bewährte Vorgehensweisen

  1. Beschriftungen kurz halten - Kurze, klare Beschriftungsnamen verwenden
  2. Tastaturkürzel verwenden - Beschleunigt die Annotation erheblich
  3. Tooltips für mehrdeutige Beschriftungen hinzufügen - Hilft bei der Konsistenz
  4. Optionen begrenzen - Zu viele Auswahlmöglichkeiten verlangsamen Annotatoren
  5. Logisch ordnen - Häufigste Optionen zuerst oder alphabetisch