{% extends "base.html" %} {% block title %}Patch Comparison - {{ instance.instance_id }}{% endblock %} {% block header %}

Patch Comparison: {{ instance.instance_id }}

Instance Information
View Trajectory
Instance:
{{ instance.instance_id }}
Run:
{{ instance.run_id }}
API:
{{ instance.api }}
{% endblock %} {% block content %}
Previous Next
Ground Truth
{% if instance.gt_num_edited_lines %}{{ instance.gt_num_edited_lines }} lines edited{% endif %}
{% if instance.gt_files_changed %}{{ instance.gt_files_changed }} files changed{% endif %}
Description:
{{ instance.gt_desc|safe }}
{{ instance.gt_patch|safe }}
Model Patch
{% if instance.patch_num_edited_lines %}{{ instance.patch_num_edited_lines }} lines edited{% endif %}
{% if instance.patch_files_changed %}{{ instance.patch_files_changed }} files changed{% endif %}
Description:
{{ instance.model_desc|safe }}
{{ instance.model_patch|safe }}
Comparison:
{{ instance.comparison_desc|safe }}
{% endblock %}