mirror of
https://github.com/hexahigh/games.git
synced 2025-12-11 20:15:38 +01:00
16 lines
473 B
HTML
16 lines
473 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Audio Classification</title>
|
|
<script src="https://cdn.jsdelivr.net/npm/@tensorflow/tfjs@2.8.4/dist/tf.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/@tensorflow-models/speech-commands@0.4.0/dist/speech-commands.min.js"></script>
|
|
<script src="script.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<div>Audio Model</div>
|
|
<button type="button" onclick="init()">Start</button>
|
|
<div id="label-container"></div>
|
|
</body>
|
|
</html>
|
|
|