{% extends "base.html" %} {% load static %} {% load custom_tags %} {% block title %}{{ model_name }} Visualization{% endblock %} {% block styling %} .padded-label{ margin-left: 4.4em !important; margin-top:-1em !important; } .resizing-image{ width: 70% !important; height: auto !important; } {% endblock %} {% block content %}

VGG HIDDEN LAYER VISUALIZATION

{% for class in images %}
VGG Feature Extraction
Input Image
Input.jpg
VGG Input
{% for conv_layer in class.images.convolution %}
Convolution Layer {{ forloop.counter }}
{{ conv_layer.kernel_size }} x {{ conv_layer.kernel_size }}
Kernel Size
{{ conv_layer.current_depth }}
Count

Visuals

{% endfor %}
Output Image
VGG Output
{% endfor %} {% endblock %} {% block scripts %} function open_modal(class_name){ $('.'+class_name).modal('show'); } {% endblock %}