{% extends "base.html" %} {% block title %}{{title}} / {{layer.name}} / Channel {{channel.index}}{% endblock %} {% block body %}
{{title}} / {{layer.name}} < > / {{channel.name}} < >

Description

Displays the top n images from each dataset, ordered by how strongly they activate this channel.

Activations

{% for activations in channel.activations %}

{{activations.dataset.name}}

{% for sample in activations.samples %}
{{sample.name}}
{{sample.category.name}}
  • Act: {{"%.3f" | format(activations.values[loop.index0])}}
{% endfor %}
{% endfor %}
{% endblock %}