Skip to content

Commit

Permalink
Renamed model file name
Browse files Browse the repository at this point in the history
  • Loading branch information
xEcho1337 committed Jan 14, 2025
1 parent 1a71b39 commit b3fe3a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/mnist/MNISTClassifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public static void main(String[] args) {
}

public static void evaluateModel(Model model) {
model.load("mnist-56.json");
model.load("mnist.json");
model.reloadMatrices();

DataSet set = getData();
Expand Down Expand Up @@ -99,7 +99,7 @@ public static void train(Model model, DataSet set) {
}

if (i % 100 == 0) {
model.save("mnist-56.json");
model.save("mnist.json");
}
}
}
Expand Down

0 comments on commit b3fe3a5

Please sign in to comment.