Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Virv12 committed Jan 30, 2024
1 parent 757d512 commit 9811825
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ Error rate: 2.95%
Error rate: 3.87%

# Convolutional Neural Network
Error rate: 3.61%
96.80%
97.87%
Error rate: 0.70%

# Compilation
```bash
Expand Down
4 changes: 2 additions & 2 deletions src/dnn.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ int main() {
srand(time(0));
load_dataset();

NN nn {
NN nn { // Error rate: 3.87%
new LayerLinear(28*28, 28),
new LayerSigmoid,
new LayerLinear(28 , 28),
Expand All @@ -23,7 +23,7 @@ int main() {
new LayerSigmoid,
};

// NN nn {
// NN nn { // Error rate: 0.70%
// new LayerConvolutional(1, 20, {24, 24}, {5, 5}),
// new LayerSigmoid,
// new LayerAveragePooling({12, 12}, {2, 2}),
Expand Down

0 comments on commit 9811825

Please sign in to comment.