% for model in sorted(allmodels): % endfor % for task in tasks: % for model in sorted(allmodels): % endfor % endfor
Task${model}
    % for link in sorted(allmodels[model]): % if link != 'value': % if type(allmodels[model]) == dict:
  • ${link.replace('_', ' ')} % endif % endif % endfor
${task} <% contents = table_rows.get(task, {}).get(model, {}) %> % if type(contents) == dict: ${contents.get('value', '')} % else: Prediction not available % endif