Skip to content

Commit

Permalink
Change favicon.png & small fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Djacon committed May 13, 2023
1 parent c3d2358 commit 3289d52
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<div class="row">
<div class="card-panel hoverable">
<blockquote><p style="font-size:larger"><strong>This demo is a simple neural network that recognizes handwritten letters.
The site and the neural network is written in pure js, so the program produces a prediction quite quickly
The site and the neural network is written in pure js, so the program produces a prediction quite fast
</strong></p></blockquote>

</div>
Expand Down
Binary file modified src/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 0 additions & 2 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,6 @@ ctx.fillText('Loading the model', CANVAS_SIZE / 2, CANVAS_SIZE / 2);
// Set the line color for the canvas.
ctx.strokeStyle = '#212121';


function argsort(arr) {
let result = [...Array(arr.length).keys()];
result.sort((lhs, rhs) => arr[rhs] - arr[lhs]);
Expand Down Expand Up @@ -226,7 +225,6 @@ function bodyMouseOut(event) {
}
}


canvas.addEventListener('mousedown', canvasMouseDown);
canvas.addEventListener('mousemove', canvasMouseMove);
document.body.addEventListener('mouseup', bodyMouseUp);
Expand Down

0 comments on commit 3289d52

Please sign in to comment.