We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6018eb3 commit 8956aeeCopy full SHA for 8956aee
1 file changed
deeplearning4j/src/main/java/com/baeldung/logreg/MnistClassifier.java
@@ -42,7 +42,7 @@
42
43
public class MnistClassifier {
44
private static final Logger logger = LoggerFactory.getLogger(MnistClassifier.class);
45
- private static final String basePath = System.getProperty("java.io.tmpdir") + "mnist" + File.separator;
+ private static final String basePath = System.getProperty("java.io.tmpdir") + File.separator + "mnist" + File.separator;
46
private static final File modelPath = new File(basePath + "mnist-model.zip");
47
private static final String dataUrl = "http://github.com/myleott/mnist_png/raw/master/mnist_png.tar.gz";
48
0 commit comments