Skip to content
This repository has been archived by the owner on Apr 4, 2023. It is now read-only.

Commit

Permalink
.gitignore update
Browse files Browse the repository at this point in the history
  • Loading branch information
amithm3 committed May 30, 2022
1 parent 5a5c6df commit 38eee8c
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/NeuralNetworks/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ def test(self, testDataBase: "DataBase" = None):
self.testAccuracy = self.accuracy(testDataBase.inputs, testDataBase.targets)
print(end='\r')
statPrinter('Train-Accuracy', f"{self.accuracyTrained}%", suffix='', end='\n')
statPrinter('Test-Accuracy', f"{self.testAccuracy}%", end='\n')
statPrinter('Tests-Accuracy', f"{self.testAccuracy}%", end='\n')

@staticmethod
def _tester(_output: "np.ndarray", _target: "np.ndarray") -> "np.ndarray":
Expand Down
2 changes: 1 addition & 1 deletion toIPYNB.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,5 +116,5 @@ def sort_c(_c: dict, *, __secret_dict=None):
with open('__ipynb__.py', 'w') as f:
f.write(tli + '\n' + ''.join(c[k][0] for k in c_key))

p2j('__ipynb__.py', '__ipynb__.ipynb', True)
p2j('__ipynb__.py', '../__ipynb__.ipynb', True)
os.remove('__ipynb__.py')

0 comments on commit 38eee8c

Please sign in to comment.