Back to Dataset Analysis | Exit
| {{ col|safe }} | {% elif col == 'Constructs' %}{{ col|safe }} | {% else %}{{ col }} | {% endif %} {% endif %} {% endfor %}
|---|---|---|
|
{% if col == 'Location' %}
{{ row[col]|replace('\n', ' ')|safe }} {% elif col == 'After Bug fix' %} {% set commit_hash = row['Fixed Commit'] %} {{ row[col]|replace('\n', ' ')|replace(' ', ' ')|safe }} {% elif col == 'Before Bug fix' %} {% set commit_hash = row['Buggy Commit'] %} {{ row[col]|replace('\n', ' ')|replace(' ', ' ')|safe }} {% elif col in ['Lizard Features Buggy', 'Lizard Features Fixed', 'Constructs'] %} {{ row[col]|pretty_print_dict|safe }}
{% elif col == 'BERT_score' %}
{% set bert_score_tensor = row[col] %}
{% set bert_score_value = bert_score_tensor.split(',')[2] %}
{{ bert_score_value|tensor2float }}
{% elif col in ['BLEU', 'crystalBLEU_score'] %}
{{row[col]|round(3)}}
{% else %}
{{ row[col] }}
{% endif %}
|
{% endif %}
{% endfor %}