Dataset Visualize of {{ info.file.name }}


Part 1. Hyperinfo

Template Path

{{ hyperinfo.template_path }}

Style Path

{{ hyperinfo.style_path }}

Server Path

{{ hyperinfo.server_path }}

Host Port Debug
{{ hyperinfo.host }} {{ hyperinfo.port }} {{ hyperinfo.debug }}

Part 2. Info

File Path

{{ info.file.path }}

File Size Created Date Last Edited Date
{{ info.file.size }} {{ info.file.created_date }} {{ info.file.last_edited_date }}

Number of Rows

{{ info.rows.num }}

Number of Columns

{{ info.columns.num }}

Columns List

{{ info.columns.list }}

Indexes

{{ info.indexes }}

Part 3. Data List

List

{% for key in info.columns.list %} {% if key not in ["images", "index_train", "index_valid"] %} {% endif %} {% endfor %} {% for data in datas %} {% for key in info.columns.list %} {% if key not in ["images", "index_train", "index_valid"] %} {% endif %} {% endfor %} {% endfor %}
Indexes Images{{ key|capitalize }}
{{ loop.index }} {{ data[key] }}