Skip to content

Commit 66492c7

Browse files
committed
#BAEL-18260 Restructure ml and deeplearning4j modules
1 parent ed23b83 commit 66492c7

9 files changed

Lines changed: 19 additions & 74 deletions

File tree

deeplearning4j/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## Deeplearning4j
22

3-
This module contains articles about Deeplearning4j
3+
This module contains articles about Deeplearning4j.
44

55
### Relevant Articles:
66
- [A Guide to Deeplearning4j](https://www.baeldung.com/deeplearning4j)
7+
- [Logistic Regression in Java](https://www.baeldung.com/java-logistic-regression)

deeplearning4j/pom.xml

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,26 @@
2424
<artifactId>deeplearning4j-core</artifactId>
2525
<version>${dl4j.version}</version>
2626
</dependency>
27+
<dependency>
28+
<groupId>org.deeplearning4j</groupId>
29+
<artifactId>deeplearning4j-nn</artifactId>
30+
<version>${dl4j.version}</version>
31+
</dependency>
32+
<!-- https://mvnrepository.com/artifact/org.datavec/datavec-api -->
33+
<dependency>
34+
<groupId>org.datavec</groupId>
35+
<artifactId>datavec-api</artifactId>
36+
<version>${dl4j.version}</version>
37+
</dependency>
38+
<dependency>
39+
<groupId>org.apache.httpcomponents</groupId>
40+
<artifactId>httpclient</artifactId>
41+
<version>4.3.5</version>
42+
</dependency>
2743
</dependencies>
2844

2945
<properties>
3046
<dl4j.version>0.9.1</dl4j.version>
3147
</properties>
3248

33-
</project>
49+
</project>

ml/src/main/java/com/baeldung/logreg/MnistClassifier.java renamed to deeplearning4j/src/main/java/com/baeldung/logreg/MnistClassifier.java

File renamed without changes.

ml/src/main/java/com/baeldung/logreg/MnistPrediction.java renamed to deeplearning4j/src/main/java/com/baeldung/logreg/MnistPrediction.java

File renamed without changes.
File renamed without changes.

ml/README.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

ml/pom.xml

Lines changed: 0 additions & 52 deletions
This file was deleted.

ml/src/main/resources/logback.xml

Lines changed: 0 additions & 13 deletions
This file was deleted.

pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -559,7 +559,6 @@
559559
<module>metrics</module>
560560
<!-- <module>micronaut</module> --> <!-- Fixing in BAEL-10877 -->
561561
<module>microprofile</module>
562-
<module>ml</module>
563562
<module>msf4j</module>
564563
<!-- <module>muleesb</module> --> <!-- Fixing in BAEL-10878 -->
565564
<module>mustache</module>
@@ -1302,7 +1301,6 @@
13021301
<module>metrics</module>
13031302
<!-- <module>micronaut</module> --> <!-- Fixing in BAEL-10877 -->
13041303
<module>microprofile</module>
1305-
<module>ml</module>
13061304
<module>msf4j</module>
13071305
<!-- <module>muleesb</module> --> <!-- Fixing in BAEL-10878 -->
13081306
<module>mustache</module>

0 commit comments

Comments
 (0)