Skip to content

Commit

Permalink
Merge pull request #40 from Samyssmile/release/1.0.5
Browse files Browse the repository at this point in the history
chore(): release 1.0.5
  • Loading branch information
Samyssmile authored Oct 10, 2023
2 parents f7d32aa + 0f7b811 commit f81766c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ Include the library as a dependency in your Java project file.
### Gradle

```
implementation 'io.github.samyssmile:edux:1.0.4'
implementation 'io.github.samyssmile:edux:1.0.5'
```

### Maven
```
<dependency>
<groupId>io.github.samyssmile</groupId>
<artifactId>edux</artifactId>
<version>1.0.4</version>
<version>1.0.5</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

group = 'io.github.samyssmile'
version = '1.0.4'
version = '1.0.5'

java {
toolchain {
Expand Down
4 changes: 2 additions & 2 deletions lib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins {
}

group = 'io.github.samyssmile'
version = '1.0.4'
version = '1.0.5'

java {
toolchain {
Expand Down Expand Up @@ -59,7 +59,7 @@ publishing {
mavenJava(MavenPublication) {
groupId = 'io.github.samyssmile'
artifactId = 'edux'
version = '1.0.4'
version = '1.0.5'
from components.java
artifact sourceJar
artifact javadocJar
Expand Down
3 changes: 1 addition & 2 deletions lib/src/main/java/de/edux/ml/randomforest/RandomForest.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@

import de.edux.api.Classifier;
import de.edux.ml.decisiontree.DecisionTree;
import de.edux.ml.decisiontree.IDecisionTree;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

Expand All @@ -13,7 +12,7 @@
import java.util.concurrent.*;

/**
* <h1>RandomForest Classifier</h1>
* RandomForest Classifier
* RandomForest is an ensemble learning method, which constructs a multitude of decision trees
* at training time and outputs the class that is the mode of the classes output by
* individual trees, or a mean prediction of the individual trees (regression).
Expand Down

0 comments on commit f81766c

Please sign in to comment.