{% extends "base.html" %} {% block title %}{{title}}{% endblock %} {% block body %}
{{title}}

Layers

{% for layer in model.layers %}
{{layer.name}}
{{layer.type}}
  • Channels: {{layer.channels|count}}
  • Convolution: {{layer.conv}}
{% endfor %}

Datasets

{% for dataset in datasets %}
{{dataset.name}}
  • Samples: {{dataset.samples|count}}
  • Classes: {{dataset.categories|count}}
{% endfor %}
{% endblock %}