Junetheriver commited on
Commit
16828f3
1 Parent(s): e91784a

added annotation guidelines

Browse files
.DS_Store ADDED
Binary file (8.2 kB). View file
 
annotation/Annotation Guideline for OpsEval Categorization.md ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Annotation Guideline for OpsEval Categorization
2
+
3
+ ## Overview
4
+ In the OpsEval project, we aim to categorize operational and maintenance tasks within the industry. This categorization process is pivotal for understanding the spectrum of tasks and the required abilities to address them effectively. The process involves two primary steps: automated screening using GPT-4 for initial topic modeling, followed by a manual review process involving domain experts.
5
+
6
+ ## 1. Task Categorization
7
+
8
+ ### Objective
9
+
10
+ To categorize questions into one of eight distinct operational tasks based on industry relevance, task frequency, and significance within operational settings.
11
+
12
+ ### Steps
13
+
14
+ 1. **Review Initial Categorization**: Begin with the insights provided by GPT-4's topic modeling. Each question has been preliminarily categorized into one or more operational tasks.
15
+ 2. **Understand Task Definitions**: Familiarize yourself with the details of the eight distinct tasks outlined in the provided Appendix. Each task has specific criteria and examples to guide your categorization.
16
+ 3. **Assign Tasks**: For each question, decide which of the eight tasks it belongs to. A question should be categorized based on its core focus and the operational activity it pertains to.
17
+ 4. **Justification**: Briefly justify your choice, especially if a question seems to fit into more than one category. Use the task definitions as a guide to support your decision.
18
+
19
+ ### Detailed Task Categorizations
20
+
21
+ 1. **General Knowledge**: Questions related to foundational concepts and practices in the Ops domain.
22
+ 2. **Fault Analysis and Diagnostics**: Questions focusing on identifying and solving discrepancies or faults in systems or networks.
23
+ 3. **Network Configuration**: Questions about optimal configurations for network devices to ensure efficient and secure operations.
24
+ 4. **Software Deployment**: Questions dealing with the distribution and management of software applications.
25
+ 5. **Monitoring and Alerts**: Questions on using monitoring tools to oversee system efficiency and setting up alert mechanisms.
26
+ 6. **Performance Optimization**: Questions aimed at enhancing network and system performance.
27
+ 7. **Automation Scripts**: Questions involving the creation of scripts to automate processes and reduce manual intervention.
28
+ 8. **Miscellaneous**: Questions that do not fit into the above categories or involve elements from multiple categories.
29
+
30
+ #### Task Categorization Template
31
+
32
+ ```markdown
33
+ Question ID: __________
34
+ Question: [Insert question text here]
35
+
36
+ Assigned Task: __________
37
+ Justification: [Provide a brief explanation for the task assignment here]
38
+ ```
39
+
40
+ #### Example for Task Categorization
41
+
42
+ ```markdown
43
+ Question ID: 001
44
+ Question: What steps should be taken to configure a firewall to prevent unauthorized access while allowing legitimate traffic?
45
+
46
+ Assigned Task: Network Configuration
47
+ Justification: This question specifically asks for optimal configuration strategies for a key network device (firewall) to ensure security and efficient operation, aligning perfectly with the 'Network Configuration' task.
48
+ ```
49
+
50
+ ## 2. Ability Categorization
51
+
52
+ ### Objective
53
+ To classify questions based on the required cognitive ability to answer them: Knowledge Recall, Analytical Thinking, or Practical Application.
54
+
55
+ ### Steps
56
+
57
+ 1. **Review Definitions**: Read the descriptions of the three abilities in the provided Appendix. Each ability category has distinct characteristics and examples.
58
+ 2. **Evaluate Questions**: Assess the cognitive demand of each question. Consider what is primarily required to answer the question effectively: recalling information, analyzing data/situations, or applying knowledge in practical scenarios.
59
+ 3. **Assign Ability Level**: Determine the most appropriate ability category for each question. Some questions may seem to require multiple abilities; choose the one that is most critical for addressing the core challenge of the question.
60
+ 4. **Justification**: Provide a rationale for your categorization, especially for questions that may not clearly fit into a single category. Refer to the ability definitions to support your categorization.
61
+
62
+ #### Detailed Ability Categorizations
63
+
64
+ 1. **Knowledge Recall**: Requires recognizing and recalling core concepts and foundational knowledge.
65
+ 2. **Analytical Thinking**: Demands deeper thought to dissect problems, correlate information, and derive conclusions.
66
+ 3. **Practical Application**: Involves applying knowledge or analytical insights to provide actionable recommendations.
67
+
68
+ #### Ability Categorization Template
69
+
70
+ ```markdown
71
+ Question ID: __________
72
+ Question: [Insert question text here]
73
+
74
+ Assigned Ability: __________
75
+ Justification: [Provide a brief explanation for the ability level assignment here]
76
+ ```
77
+
78
+ #### Example for Ability Categorization
79
+
80
+ ```markdown
81
+ Question ID: 002
82
+ Question: How would you optimize the performance of a network experiencing frequent bottlenecks?
83
+
84
+ Assigned Ability: Practical Application
85
+ Justification: The question requires applying knowledge of network systems and performance optimization techniques to propose specific solutions, hence it falls under 'Practical Application'.
86
+ ```
87
+
88
+ ## General Guidelines
89
+
90
+ - **Consistency**: Strive for consistency in your categorization decisions. If similar questions are categorized differently, reassess your choices to ensure they align with the task and ability definitions.
91
+ - **Collaboration**: When in doubt, discuss challenging questions with fellow experts. Collaboration can help clarify ambiguities and refine the categorization process.
92
+ - **Documentation**: Keep detailed notes on your decisions, especially for questions that required significant deliberation. This documentation will be valuable for future reference and analysis.
93
+
94
+ By following these guidelines, you will contribute to a comprehensive and nuanced categorization of operational tasks and required abilities. This effort is crucial for enhancing our understanding of the operational landscape and the diverse skills professionals need to navigate it effectively.
app.py DELETED
@@ -1,11 +0,0 @@
1
- # gradio display leaderboard
2
-
3
- import gradio as gr
4
- import pandas as pd
5
-
6
- def leaderboard():
7
- df = pd.read_csv('leaderboard/wired_network.csv')
8
- return df
9
-
10
- iface = gr.Interface(fn=leaderboard, title="Leaderboard", description="Display leaderboard", allow_flagging=False)
11
- iface.launch()