mirror of
https://github.com/hexahigh/games.git
synced 2025-12-11 20:15:38 +01:00
18 lines
419 B
HTML
18 lines
419 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="script.js" defer></script>
|
|
</head>
|
|
<body>
|
|
<h1>Audio Classification</h1>
|
|
<form>
|
|
<input type="file" id="audioFile" name="audioFile"/>
|
|
<button type="submit">Upload</button>
|
|
</form>
|
|
<section id="result"></section>
|
|
|
|
</body>
|
|
</html>
|