-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
27 lines (24 loc) · 1.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<html>
<head>
<title>Reconnaissance écriture de caractères</title>
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs"></script>
<link rel="stylesheet" href="style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jost:wght@400;500&display=swap" rel="stylesheet">
</head>
<body>
<h1>Reconnaissance écriture de caractères</h1>
<p>Reconnaissance numérique utilisant un apprentissage profond avec les réseaux de Neuronnes.</p>
<p>Conception avec Keras et TensorFlowJS</p>
<section>
<canvas id="main-canvas" width="300" height="300"></canvas>
<canvas id="small-canvas" width="28" height="28"></canvas>
<div id="prediction"></div>
</section>
<div id="confidence">—</div>
<button id="erase">reset</button>
<script src="script.js"></script>
</body>
</html>