82 lines
2.2 KiB
Text
82 lines
2.2 KiB
Text
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>Document</title>
|
||
|
|
||
|
<script src="https://unpkg.com/pagedjs/dist/paged.polyfill.js"></script>
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
<link href="pagedjs-interface.css" rel="stylesheet" type="text/css" />
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<section id='cover'>
|
||
|
<h1 class="title">This Place Does Exist</h1>
|
||
|
<h2>Stylegan 3 Snapshots</h2>
|
||
|
</section>
|
||
|
|
||
|
<section id="toc">
|
||
|
<h2>Table of contents</h2>
|
||
|
<img src="{{runs_graph}}" id='runs-graph'>
|
||
|
|
||
|
{{runs_table}}
|
||
|
|
||
|
|
||
|
<img src="{{runs_losses_graph}}" id='runs-losses-graph'>
|
||
|
</section>
|
||
|
|
||
|
{% for run in runs %}
|
||
|
<section class="run" id="run{{run.as_nr}}">
|
||
|
|
||
|
<h1>{{run.as_nr}}</h1>
|
||
|
<h2>{{run.id}}</h2>
|
||
|
|
||
|
<dl class="metadata">
|
||
|
<dt>dataset</dt>
|
||
|
<dd>{{run.dataset_id}}</dd>
|
||
|
<dt>conditional_dataset</dt>
|
||
|
<dd>{{run.dataset_is_conditional()}}</dd>
|
||
|
<dt>resolution</dt>
|
||
|
<dd>{{run.resolution}}</dd>
|
||
|
<dt>r1 gamma</dt>
|
||
|
<dd>{{run.r1_gamma}}</dd>
|
||
|
<dt>duration</dt>
|
||
|
<dd>{{run.duration}}</dd>
|
||
|
<dt>latest_snapshots</dt>
|
||
|
<dd>{{run.snapshots[-1].iteration}}</dd>
|
||
|
<dt>finished at</dt>
|
||
|
<dd>{{run.snapshots[-1].time}}</dd>
|
||
|
<dt>last_fid</dt>
|
||
|
<dd>{{run.snapshots[-1].fid}}</dd>
|
||
|
{% if run.resumed_from %}
|
||
|
|
||
|
<dt>resumed_from</dt>
|
||
|
<dd>{{run.resumed_from.run.id}} {{run.resumed_from.iteration_str}}</dd>
|
||
|
|
||
|
{% endif %}
|
||
|
|
||
|
</dl>
|
||
|
|
||
|
|
||
|
<div class="snapshots">
|
||
|
|
||
|
{% for snapshot in run.snapshots %}
|
||
|
<div class="snapshot">
|
||
|
<span class="iteration">{{snapshot.iteration}}</span>
|
||
|
<span class="time">{{snapshot.time}}</span>
|
||
|
<img src="imgs/{{snapshot.id}}.jpg">
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
|
||
|
</div>
|
||
|
|
||
|
</section>
|
||
|
{% endfor %}
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|