Spaces:
Running
Running
Andrea Seveso
commited on
Commit
·
9b7ca38
1
Parent(s):
4f4b508
More info about question format
Browse files- app.py +1 -1
- src/about.py +6 -2
app.py
CHANGED
@@ -135,7 +135,7 @@ def get_macro_area_data():
|
|
135 |
columns = ['Model', 'LI (108)', 'RM (179)', 'RC (33)', 'WF (7)',
|
136 |
'LS (29)', ' MO (24)', 'SP (4)', 'SY (19)', 'TP (6)']
|
137 |
dataset.columns = columns
|
138 |
-
|
139 |
return dataset
|
140 |
|
141 |
|
|
|
135 |
columns = ['Model', 'LI (108)', 'RM (179)', 'RC (33)', 'WF (7)',
|
136 |
'LS (29)', ' MO (24)', 'SP (4)', 'SY (19)', 'TP (6)']
|
137 |
dataset.columns = columns
|
138 |
+
dataset = dataset.style.highlight_max(color='lightgreen', axis=0)
|
139 |
return dataset
|
140 |
|
141 |
|
src/about.py
CHANGED
@@ -250,11 +250,15 @@ CITATION_BUTTON_TEXT = r"""
|
|
250 |
|
251 |
QUESTION_FORMAT_TEXT = """
|
252 |
Performance (accuracy %) comparison of AI models across school grades and question formats for grades 2 to 13.
|
253 |
-
|
254 |
-
|
255 |
Due to the stratification and the limited number of questions in some categories, extreme values such as 100 or 0 are more attainable in the sections with few items.
|
256 |
|
|
|
257 |
|
|
|
|
|
|
|
|
|
|
|
258 |
"""
|
259 |
|
260 |
MACRO_AREA_TEXT = """"
|
|
|
250 |
|
251 |
QUESTION_FORMAT_TEXT = """
|
252 |
Performance (accuracy %) comparison of AI models across school grades and question formats for grades 2 to 13.
|
|
|
|
|
253 |
Due to the stratification and the limited number of questions in some categories, extreme values such as 100 or 0 are more attainable in the sections with few items.
|
254 |
|
255 |
+
The question formats are abbreviated as:
|
256 |
|
257 |
+
- _Multiple Choice (MC)_: composed of a question with several answer options, among which only one is correct.
|
258 |
+
- _Multiple Complex Choice (MCC)_: composed of input questions and multiple items to answer.
|
259 |
+
- _Unique Response (RU)_: involves open-ended questions in which there are no options or suggestions and where only one answer is considered correct (with sometimes a limited number of possible variants).
|
260 |
+
- _Short Response (RB)_: is a specific sub-type of RU questions in which the answer is short, tending to consist of a single identifying word.
|
261 |
+
- _Cloze (CL)_: can be open-ended or closed-ended. In both cases, a text with missing words is provided. The aim is to complete the text by inserting the correct missing terms.
|
262 |
"""
|
263 |
|
264 |
MACRO_AREA_TEXT = """"
|