Skip to content

Commit

Permalink
root html test file
Browse files Browse the repository at this point in the history
  • Loading branch information
arun477 committed Sep 13, 2023
1 parent 2a8a37d commit 5c31853
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<title>MNIST Classifier</title>
</head>
<body>
<h1>MNIST Digit Classifier</h1>
<p>Draw a digit and click "Classify" to identify it.</p>

<!-- Canvas for drawing -->
<canvas id="canvas" width="200" height="200" style="border: 1px solid black;"></canvas>

<!-- Classify button -->
<button onclick="classifyDigit()">Classify</button>

<!-- Result display -->
<p id="result">Classification result: </p>

<script>
// JavaScript code for drawing and classification will go here

// You would need to add JavaScript code to handle drawing and classification
</script>
</body>
</html>

0 comments on commit 5c31853

Please sign in to comment.