mirror of
https://github.com/iperov/DeepFaceLab.git
synced 2025-08-22 22:34:25 -07:00
change window title to Training preview
This commit is contained in:
parent
888c95a784
commit
bfd3c2fbb2
1 changed files with 4 additions and 3 deletions
|
@ -5,7 +5,7 @@
|
||||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.2.0/socket.io.js"
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.2.0/socket.io.js"
|
||||||
integrity="sha256-yr4fRk/GU1ehYJPAs8P4JlTgu0Hdsp4ZKrx8bDEDC3I="
|
integrity="sha256-yr4fRk/GU1ehYJPAs8P4JlTgu0Hdsp4ZKrx8bDEDC3I="
|
||||||
crossorigin="anonymous"></script>
|
crossorigin="anonymous"></script>
|
||||||
<title>Flask Server Demonstration</title>
|
<title>Training Preview</title>
|
||||||
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
$(function() {
|
$(function() {
|
||||||
|
@ -37,13 +37,14 @@
|
||||||
|
|
||||||
socket.on('loss', function(loss_string) {
|
socket.on('loss', function(loss_string) {
|
||||||
console.log(new Date(), '- loss string -', loss_string);
|
console.log(new Date(), '- loss string -', loss_string);
|
||||||
$('h1#loss').html(loss_string);
|
$('h2#loss').html(loss_string);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1 id="loss"></h1>
|
<h1>Training Preview</h1>
|
||||||
|
<h2 id="loss"></h2>
|
||||||
<div>
|
<div>
|
||||||
<button class='btn btn-default' id='save'>Save</button>
|
<button class='btn btn-default' id='save'>Save</button>
|
||||||
<button class='btn btn-default' id='exit'>Exit</button>
|
<button class='btn btn-default' id='exit'>Exit</button>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue