mirror of
https://github.com/augustin64/projet-tipe
synced 2025-04-22 05:23:53 +02:00
18 lines
606 B
HTML
18 lines
606 B
HTML
<!doctype html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>MNIST interaction</title>
|
|
<link href="{{ url_for('static',filename='mnist.css') }}" rel="stylesheet">
|
|
<script src="{{ url_for('static',filename='mnist.js') }}"></script>
|
|
</head>
|
|
<body onload="init()">
|
|
<div id="maincard">
|
|
<canvas id="digit-canvas" width="280" height="280"></canvas><br/>
|
|
<button id="clear">Clear</button>
|
|
<button id="predict" onclick="getPrediction()">Prédire</button>
|
|
</div><br/>
|
|
<div id="result_fc" class="result-elem"></div>
|
|
<div id="result_cnn" class="result-elem"></div>
|
|
</body>
|
|
</html> |