An implementation of the ID3 Decision Tree algorithm in Java from scratch.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.0 KiB

4 years ago
  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>org.nova</groupId>
  6. <artifactId>id3</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>ID3</name>
  9. <build>
  10. <sourceDirectory>src</sourceDirectory>
  11. <plugins>
  12. <plugin>
  13. <artifactId>maven-compiler-plugin</artifactId>
  14. <version>3.8.0</version>
  15. <configuration>
  16. <release>11</release>
  17. </configuration>
  18. </plugin>
  19. </plugins>
  20. </build>
  21. <dependencies>
  22. <!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java -->
  23. <dependency>
  24. <groupId>mysql</groupId>
  25. <artifactId>mysql-connector-java</artifactId>
  26. <version>6.0.6</version>
  27. </dependency>
  28. <!-- https://mvnrepository.com/artifact/org.jocl/jocl -->
  29. <dependency>
  30. <groupId>org.jocl</groupId>
  31. <artifactId>jocl</artifactId>
  32. <version>2.0.1</version>
  33. </dependency>
  34. </dependencies>
  35. </project>