{% extends "_layout.html" %} {% block head %} NerfBaselines: Method {{ name }} {% endblock %} {% block content %}

{{ name }}

{{ description }}

{% if link or paper_link or paper_authors %}
{% if link %}
Web: {{ link }}
{% endif %} {% if paper_link %}
Paper: {{ paper_title or paper_link }}
{% endif %} {% if paper_authors %}
Authors: {{ paper_authors|join(", ") }}
{% endif %}
{% endif %}
{% for dataset in datasets %}

{{ dataset.name }}

{{ dataset.description }}

{% with average=dataset.average,metrics=dataset.metrics,scenes=dataset.scenes,default_metric=default_metric or dataset.metrics[0].id %} {% include '_partials/method_dataset_table.html' %} {% endwith %}
{% endfor %}
{% endblock %}