-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added confidence level feature and fixed mobile version
- Loading branch information
1 parent
97949d5
commit bd81c79
Showing
14 changed files
with
417 additions
and
227 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 0 additions & 14 deletions
14
src/main/resources/PyTorch_params_size784_256_10_lr0.001_trainEp30.txt
This file was deleted.
Oops, something went wrong.
14 changes: 0 additions & 14 deletions
14
src/main/resources/PyTorch_params_size784_256_10_lr0.001_trainEp50_1.txt
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!DOCTYPE html> | ||
<html lang="en" xmlns:th="http://www.thymeleaf.org"> | ||
|
||
<div th:fragment="returnedAnswer"> | ||
|
||
<h2 style=" margin-left:-15px; font-size: 40px"> Answer: | ||
<span style="color: white; font-size: 40px" th:text="${NeuralNetwork.answer}"></span> | ||
</h2> | ||
|
||
<h2 style=" margin-left:-15px"> AI's confidence level:</h2> | ||
|
||
<span th:id="sp0" style=" margin-left:-15px">0</span> | ||
<span th:id="sp1">1</span> | ||
<span th:id="sp2">2</span> | ||
<span th:id="sp3">3</span> | ||
<span th:id="sp4">4</span> | ||
<span th:id="sp5">5</span> | ||
<span th:id="sp6">6</span> | ||
<span th:id="sp7">7</span> | ||
<span th:id="sp8">8</span> | ||
<span th:id="sp9">9</span> | ||
|
||
<input type="hidden" th:id="outputVector" th:field="${NeuralNetwork.outputVector}"/> | ||
|
||
</div> | ||
</html> |
Oops, something went wrong.