Ranking Compare App
flask_app.app_ranking_compare.loader_user(_user_id)
Load a user from the database based on the given user ID.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
_user_id |
str
|
The ID of the user to load. |
required |
Returns:
Name | Type | Description |
---|---|---|
User |
The loaded user object. |
Source code in flask_app/app_ranking_compare.py
62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
|
flask_app.app_ranking_compare.start_compare(experiment_id)
Redirects to the next task URL for the given experiment ID.
Args:: experiment_id (int): The ID of the experiment.
Returns:
Name | Type | Description |
---|---|---|
response |
Response
|
The redirect response with the next task URL. |
Source code in flask_app/app_ranking_compare.py
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 |
|
flask_app.app_ranking_compare.get_task(experiment_id, direction, task_n)
Retrieves the next or previous task based on the given experiment ID, direction, and task number.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
experiment_id |
str
|
The ID of the experiment. |
required |
direction |
str
|
The direction to navigate the tasks. Can be either 'next' or 'previous'. |
required |
task_n |
int
|
The current task number. |
required |
Returns:
Name | Type | Description |
---|---|---|
dict |
A JSON response containing the next task number. |
Source code in flask_app/app_ranking_compare.py
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 |
|
flask_app.app_ranking_compare.index_compare(experiment_id, n_task)
Renders Ranking Comparison UI for researchers.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
experiment_id |
str
|
The ID of the experiment. |
required |
n_task |
int
|
The index of the task. |
required |
Returns:
Name | Type | Description |
---|---|---|
render_template |
The rendered HTML template for the index_ranking_compare_template. |
Source code in flask_app/app_ranking_compare.py
123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 |
|