#BAEL-18260 Restructure ml and deeplearning4j modules
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
## Deeplearning4j
|
## Deeplearning4j
|
||||||
|
|
||||||
This module contains articles about Deeplearning4j
|
This module contains articles about Deeplearning4j.
|
||||||
|
|
||||||
### Relevant Articles:
|
### Relevant Articles:
|
||||||
- [A Guide to Deeplearning4j](https://www.baeldung.com/deeplearning4j)
|
- [A Guide to Deeplearning4j](https://www.baeldung.com/deeplearning4j)
|
||||||
|
- [Logistic Regression in Java](https://www.baeldung.com/java-logistic-regression)
|
||||||
|
|||||||
@@ -24,6 +24,22 @@
|
|||||||
<artifactId>deeplearning4j-core</artifactId>
|
<artifactId>deeplearning4j-core</artifactId>
|
||||||
<version>${dl4j.version}</version>
|
<version>${dl4j.version}</version>
|
||||||
</dependency>
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.deeplearning4j</groupId>
|
||||||
|
<artifactId>deeplearning4j-nn</artifactId>
|
||||||
|
<version>${dl4j.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<!-- https://mvnrepository.com/artifact/org.datavec/datavec-api -->
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.datavec</groupId>
|
||||||
|
<artifactId>datavec-api</artifactId>
|
||||||
|
<version>${dl4j.version}</version>
|
||||||
|
</dependency>
|
||||||
|
<dependency>
|
||||||
|
<groupId>org.apache.httpcomponents</groupId>
|
||||||
|
<artifactId>httpclient</artifactId>
|
||||||
|
<version>4.3.5</version>
|
||||||
|
</dependency>
|
||||||
</dependencies>
|
</dependencies>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
|
|||||||
@@ -1,5 +0,0 @@
|
|||||||
### Logistic Regression in Java
|
|
||||||
This is a soft introduction to ML using [deeplearning4j](https://deeplearning4j.org) library
|
|
||||||
|
|
||||||
### Relevant Articles:
|
|
||||||
- [Logistic Regression in Java](https://www.baeldung.com/)
|
|
||||||
52
ml/pom.xml
52
ml/pom.xml
@@ -1,52 +0,0 @@
|
|||||||
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
||||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
||||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
|
|
||||||
<modelVersion>4.0.0</modelVersion>
|
|
||||||
<groupId>com.baeldung.deeplearning4j</groupId>
|
|
||||||
<artifactId>ml</artifactId>
|
|
||||||
<version>1.0-SNAPSHOT</version>
|
|
||||||
<name>Machine Learning</name>
|
|
||||||
<packaging>jar</packaging>
|
|
||||||
|
|
||||||
<parent>
|
|
||||||
<groupId>com.baeldung</groupId>
|
|
||||||
<artifactId>parent-modules</artifactId>
|
|
||||||
<version>1.0.0-SNAPSHOT</version>
|
|
||||||
</parent>
|
|
||||||
|
|
||||||
<dependencies>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.nd4j</groupId>
|
|
||||||
<artifactId>nd4j-native-platform</artifactId>
|
|
||||||
<version>${dl4j.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.deeplearning4j</groupId>
|
|
||||||
<artifactId>deeplearning4j-core</artifactId>
|
|
||||||
<version>${dl4j.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.deeplearning4j</groupId>
|
|
||||||
<artifactId>deeplearning4j-nn</artifactId>
|
|
||||||
<version>${dl4j.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<!-- https://mvnrepository.com/artifact/org.datavec/datavec-api -->
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.datavec</groupId>
|
|
||||||
<artifactId>datavec-api</artifactId>
|
|
||||||
<version>${dl4j.version}</version>
|
|
||||||
</dependency>
|
|
||||||
<dependency>
|
|
||||||
<groupId>org.apache.httpcomponents</groupId>
|
|
||||||
<artifactId>httpclient</artifactId>
|
|
||||||
<version>4.3.5</version>
|
|
||||||
</dependency>
|
|
||||||
|
|
||||||
|
|
||||||
</dependencies>
|
|
||||||
|
|
||||||
<properties>
|
|
||||||
<dl4j.version>1.0.0-beta4</dl4j.version>
|
|
||||||
</properties>
|
|
||||||
|
|
||||||
</project>
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<configuration>
|
|
||||||
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
|
||||||
<encoder>
|
|
||||||
<pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n
|
|
||||||
</pattern>
|
|
||||||
</encoder>
|
|
||||||
</appender>
|
|
||||||
|
|
||||||
<root level="INFO">
|
|
||||||
<appender-ref ref="STDOUT" />
|
|
||||||
</root>
|
|
||||||
</configuration>
|
|
||||||
2
pom.xml
2
pom.xml
@@ -559,7 +559,6 @@
|
|||||||
<module>metrics</module>
|
<module>metrics</module>
|
||||||
<!-- <module>micronaut</module> --> <!-- Fixing in BAEL-10877 -->
|
<!-- <module>micronaut</module> --> <!-- Fixing in BAEL-10877 -->
|
||||||
<module>microprofile</module>
|
<module>microprofile</module>
|
||||||
<module>ml</module>
|
|
||||||
<module>msf4j</module>
|
<module>msf4j</module>
|
||||||
<!-- <module>muleesb</module> --> <!-- Fixing in BAEL-10878 -->
|
<!-- <module>muleesb</module> --> <!-- Fixing in BAEL-10878 -->
|
||||||
<module>mustache</module>
|
<module>mustache</module>
|
||||||
@@ -1302,7 +1301,6 @@
|
|||||||
<module>metrics</module>
|
<module>metrics</module>
|
||||||
<!-- <module>micronaut</module> --> <!-- Fixing in BAEL-10877 -->
|
<!-- <module>micronaut</module> --> <!-- Fixing in BAEL-10877 -->
|
||||||
<module>microprofile</module>
|
<module>microprofile</module>
|
||||||
<module>ml</module>
|
|
||||||
<module>msf4j</module>
|
<module>msf4j</module>
|
||||||
<!-- <module>muleesb</module> --> <!-- Fixing in BAEL-10878 -->
|
<!-- <module>muleesb</module> --> <!-- Fixing in BAEL-10878 -->
|
||||||
<module>mustache</module>
|
<module>mustache</module>
|
||||||
|
|||||||
Reference in New Issue
Block a user