Skip to content
Questa pagina non è ancora disponibile nella tua lingua. Viene mostrata la versione in inglese.

Likert Scales

दृष्टिकोण और राय मापने के लिए रेटिंग स्केल।

Likert Scales

Likert scale एनोटेटर्स को एक संख्यात्मक स्केल पर आइटम रेट करने की अनुमति देते हैं, जो आमतौर पर भावना तीव्रता, सहमति स्तर, और गुणवत्ता रेटिंग के लिए उपयोग किए जाते हैं।

बुनियादी कॉन्फ़िगरेशन

yaml
annotation_schemes:
  - annotation_type: likert
    name: agreement
    description: "How much do you agree with this statement?"
    size: 5
    min_label: "Strongly Disagree"
    max_label: "Strongly Agree"

कॉन्फ़िगरेशन विकल्प

स्केल आकार

बिंदुओं की संख्या परिभाषित करें:

yaml
size: 5  # 5-point scale (1-5)
size: 7  # 7-point scale (1-7)
size: 10 # 10-point scale (1-10)

समापन बिंदु लेबल

स्केल समापन बिंदुओं को लेबल करें:

yaml
min_label: "Not at all"
max_label: "Extremely"

मध्य लेबल

विषम-संख्या वाले स्केल के लिए, मध्यबिंदु लेबल करें:

yaml
size: 5
min_label: "Strongly Disagree"
max_label: "Strongly Agree"
mid_label: "Neutral"  # Shown at position 3

सभी लेबल

स्केल पर हर बिंदु लेबल करें:

yaml
size: 5
labels:
  1: "Strongly Disagree"
  2: "Disagree"
  3: "Neutral"
  4: "Agree"
  5: "Strongly Agree"

सामान्य स्केल प्रकार

सहमति स्केल (5-बिंदु)

yaml
- annotation_type: likert
  name: agreement
  size: 5
  min_label: "Strongly Disagree"
  max_label: "Strongly Agree"

आवृत्ति स्केल

yaml
- annotation_type: likert
  name: frequency
  size: 5
  labels:
    1: "Never"
    2: "Rarely"
    3: "Sometimes"
    4: "Often"
    5: "Always"

गुणवत्ता स्केल

yaml
- annotation_type: likert
  name: quality
  size: 5
  min_label: "Very Poor"
  max_label: "Excellent"

महत्व स्केल

yaml
- annotation_type: likert
  name: importance
  size: 5
  min_label: "Not Important"
  max_label: "Extremely Important"

संतुष्टि स्केल

yaml
- annotation_type: likert
  name: satisfaction
  size: 5
  min_label: "Very Dissatisfied"
  max_label: "Very Satisfied"

कीबोर्ड शॉर्टकट

संख्या कुंजी शॉर्टकट सक्षम करें:

yaml
- annotation_type: likert
  name: rating
  size: 5
  keyboard_shortcuts: true  # 1-5 keys select ratings

प्रदर्शन विकल्प

क्षैतिज लेआउट (डिफ़ॉल्ट)

yaml
- annotation_type: likert
  name: rating
  size: 5
  display: horizontal

संख्याएँ दिखाएँ

संख्यात्मक मान प्रदर्शित करें:

yaml
- annotation_type: likert
  name: rating
  size: 5
  show_numbers: true

एकाधिक Likert Scale

कई पहलुओं को रेट करें:

yaml
annotation_schemes:
  - annotation_type: likert
    name: clarity
    description: "How clear is this text?"
    size: 5
    min_label: "Very Unclear"
    max_label: "Very Clear"
 
  - annotation_type: likert
    name: relevance
    description: "How relevant is this text?"
    size: 5
    min_label: "Not Relevant"
    max_label: "Highly Relevant"
 
  - annotation_type: likert
    name: quality
    description: "Overall quality rating"
    size: 5
    min_label: "Poor"
    max_label: "Excellent"

Multirate (Matrix Rating)

एक ही स्केल पर कई आइटम रेट करने के लिए:

yaml
- annotation_type: multirate
  name: aspect_ratings
  description: "Rate each aspect"
  items:
    - "Clarity"
    - "Accuracy"
    - "Completeness"
    - "Relevance"
  size: 5
  min_label: "Poor"
  max_label: "Excellent"

यह एक matrix के रूप में प्रदर्शित होता है जहाँ प्रत्येक पंक्ति एक आइटम है और कॉलम स्केल बिंदु हैं।

Semantic Differential

दो विपरीत अवधारणाओं के बीच रेट करें:

yaml
- annotation_type: likert
  name: tone
  size: 7
  min_label: "Formal"
  max_label: "Informal"
 
- annotation_type: likert
  name: sentiment
  size: 7
  min_label: "Negative"
  max_label: "Positive"

आवश्यक बनाम वैकल्पिक

रेटिंग को आवश्यक बनाएँ:

yaml
- annotation_type: likert
  name: rating
  size: 5
  required: true

डिफ़ॉल्ट मान

पूर्व-चयनित मान निर्धारित करें:

yaml
- annotation_type: likert
  name: rating
  size: 5
  default: 3  # Pre-select middle value

पूर्ण उदाहरण: सर्वेक्षण कार्य

yaml
task_name: "Content Quality Survey"
 
annotation_schemes:
  - annotation_type: likert
    name: clarity
    description: "How clear and understandable is this content?"
    size: 5
    min_label: "Very Unclear"
    max_label: "Very Clear"
    keyboard_shortcuts: true
 
  - annotation_type: likert
    name: accuracy
    description: "How accurate is the information?"
    size: 5
    min_label: "Very Inaccurate"
    max_label: "Very Accurate"
    keyboard_shortcuts: true
 
  - annotation_type: likert
    name: usefulness
    description: "How useful would this be for the target audience?"
    size: 5
    min_label: "Not Useful"
    max_label: "Very Useful"
    keyboard_shortcuts: true
 
  - annotation_type: text
    name: feedback
    description: "Any additional feedback? (Optional)"
    required: false

सर्वोत्तम प्रथाएँ

  1. विषम संख्याओं का उपयोग करें तटस्थ मध्यबिंदु वाले स्केल के लिए
  2. सम संख्याओं का उपयोग करें एक दिशा को मजबूर करने के लिए (कोई तटस्थ विकल्प नहीं)
  3. 5 या 7 बिंदु अधिकांश अनुप्रयोगों के लिए सबसे अच्छे काम करते हैं
  4. समापन बिंदु स्पष्ट रूप से लेबल करें स्केल को लंगर डालने के लिए
  5. **स्केल दिशा में सुसंगत रहें अपने प्रोजेक्ट में
  6. कीबोर्ड शॉर्टकट पर विचार करें तेज़ एनोटेशन के लिए