Spaces:
Runtime error
Runtime error
Update worksheet.py
Browse files- worksheet.py +3 -3
worksheet.py
CHANGED
@@ -107,7 +107,7 @@ def post_interface():
|
|
107 |
question_tagging_options = gr.CheckboxGroup(["Hint", "Curricular Goal", "Competency", "LO", "LOB", "Difficulty Level", "Bloom Taxonomy"], label="Question Tagging Options")
|
108 |
number_of_questions = gr.Number(label="Number of Questions", value=10)
|
109 |
|
110 |
-
gr.Markdown("## Difficulty Distribution (easy, medium, hard)")
|
111 |
# Difficulty Distribution (easy, medium, hard)
|
112 |
with gr.Row():
|
113 |
with gr.Column():
|
@@ -117,7 +117,7 @@ def post_interface():
|
|
117 |
with gr.Column():
|
118 |
hard = gr.Number(label="Hard", minimum=0, maximum=100, value=0)
|
119 |
|
120 |
-
gr.Markdown("## Bloom Taxonomy Distribution (Remember, Understand, Apply, Analyze, Evaluate, Create)")
|
121 |
# Bloom Taxonomy Distribution (Remember, Understand, Apply, Analyze, Evaluate, Create)
|
122 |
with gr.Row():
|
123 |
with gr.Column():
|
@@ -134,7 +134,7 @@ def post_interface():
|
|
134 |
with gr.Column():
|
135 |
create = gr.Number(minimum=0, maximum=100, step=1, label="Create", value=0)
|
136 |
|
137 |
-
gr.Markdown("## Question Type Distribution (MCQ Single, MCQ Multiple, True/False, Fill in the Blanks, Match the Column, Very Short, Short, Long)")
|
138 |
with gr.Row():
|
139 |
with gr.Column():
|
140 |
mcq_single_answer = gr.Number(minimum=0, maximum=100, step=1, label="MCQ Single Answer", value=0)
|
|
|
107 |
question_tagging_options = gr.CheckboxGroup(["Hint", "Curricular Goal", "Competency", "LO", "LOB", "Difficulty Level", "Bloom Taxonomy"], label="Question Tagging Options")
|
108 |
number_of_questions = gr.Number(label="Number of Questions", value=10)
|
109 |
|
110 |
+
gr.Markdown("## Difficulty Distribution (easy, medium, hard) - Percentage")
|
111 |
# Difficulty Distribution (easy, medium, hard)
|
112 |
with gr.Row():
|
113 |
with gr.Column():
|
|
|
117 |
with gr.Column():
|
118 |
hard = gr.Number(label="Hard", minimum=0, maximum=100, value=0)
|
119 |
|
120 |
+
gr.Markdown("## Bloom Taxonomy Distribution (Remember, Understand, Apply, Analyze, Evaluate, Create) - Percentage")
|
121 |
# Bloom Taxonomy Distribution (Remember, Understand, Apply, Analyze, Evaluate, Create)
|
122 |
with gr.Row():
|
123 |
with gr.Column():
|
|
|
134 |
with gr.Column():
|
135 |
create = gr.Number(minimum=0, maximum=100, step=1, label="Create", value=0)
|
136 |
|
137 |
+
gr.Markdown("## Question Type Distribution (MCQ Single, MCQ Multiple, True/False, Fill in the Blanks, Match the Column, Very Short, Short, Long) - Absolute")
|
138 |
with gr.Row():
|
139 |
with gr.Column():
|
140 |
mcq_single_answer = gr.Number(minimum=0, maximum=100, step=1, label="MCQ Single Answer", value=0)
|