{# Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved. #} {% extends "job.html" %} {% from "helper.html" import serve_file %} {% macro print_create_db_task(task) %}

{{task.name()}}

Entry Count
{{ task.entry_count }}
{% if task.entry_count > 0 %}
Feature shape
{{ task.feature_shape }}
Label shape
{{ task.label_shape }}
{% for name,path in task.dbs.iteritems() %}
{{ name }} DB
{{ job.path(path) }}
{% if task.status=='D' and task.get_encoding(name)!='none' %}
Explore the db
{% endif %}
{% endfor %} {% endif %} {% if task.create_db_log_file %}
DB create log file
{{serve_file(task, task.create_db_log_file)}}
{% endif %} {% if task.mean_file %}
Mean file
{{serve_file(task, task.mean_file)}}
{% endif %}
{% endmacro %} {% block job_content %}

Job Information

Job Directory
{{job.dir()}}
Dataset size
{{job.disk_size_fmt()}}
{% for task in job.create_db_tasks() %}
{% if task.status != 'D' or task.entry_count > 0 %}
{{ print_create_db_task(task) }}
{% endif %}
{% endfor %} {% endblock %}