This repository has been archived by the owner on Jan 7, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4 changed files
with
71 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
digits/templates/models/images/classification/large_graph.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{# Copyright (c) 2014-2015, NVIDIA CORPORATION. All rights reserved. #} | ||
|
||
{% extends "layout.html" %} | ||
|
||
{% block title %} | ||
{{job.name()}} - Large graph | ||
{% endblock %} | ||
|
||
{% block head %} | ||
<script src="{{ url_for('static', filename='js/model-graphs.js') }}"></script> | ||
{% endblock %} | ||
|
||
{% block nav %} | ||
<li class="active"><a href="{{ url_for('show_job', job_id=job.id()) }}">{{job.job_type()}}</a></li> | ||
{% endblock %} | ||
|
||
{% block content %} | ||
|
||
{% set task = job.train_task() %} | ||
|
||
<div class="row"> | ||
<div class="col-sm-12"> | ||
<div class="well"> | ||
{% set combined_graph_data = job.train_task().combined_graph_data(cull=False) %} | ||
{% if combined_graph_data %} | ||
<div id="combined-graph" style="height:800px;width:100%;background:white"></div> | ||
<script> | ||
drawCombinedGraph({% autoescape false %}{{combined_graph_data}}{% endautoescape %}); | ||
</script> | ||
{% else %} | ||
<i>No data.</i> | ||
{% endif %} | ||
|
||
</div> | ||
</div> | ||
</div> | ||
|
||
{% endblock %} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters