Skip to content

Commit 016d6a1

Browse files
authored
version now is 3.0.0 (#335)
* version now is 3.0.0 * updating readme
1 parent 5630173 commit 016d6a1

File tree

8 files changed

+12
-12
lines changed

8 files changed

+12
-12
lines changed

Java/README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ vector data point, scores the data point, and then updates the model with this
135135
point. The program output appends a column of anomaly scores to the input:
136136

137137
```text
138-
$ java -cp core/target/randomcutforest-core-3.0-rc3.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner < ../example-data/rcf-paper.csv > example_output.csv
138+
$ java -cp core/target/randomcutforest-core-3.0.0.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner < ../example-data/rcf-paper.csv > example_output.csv
139139
$ tail example_output.csv
140140
-5.0029,0.0170,-0.0057,0.8129401629464965
141141
-4.9975,-0.0102,-0.0065,0.6591046054520615
@@ -154,8 +154,8 @@ read additional usage instructions, including options for setting model
154154
hyperparameters, using the `--help` flag:
155155

156156
```text
157-
$ java -cp core/target/randomcutforest-core-3.0-rc3.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner --help
158-
Usage: java -cp target/random-cut-forest-3.0-rc3.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner [options] < input_file > output_file
157+
$ java -cp core/target/randomcutforest-core-3.0.0.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner --help
158+
Usage: java -cp target/random-cut-forest-3.0.0.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner [options] < input_file > output_file
159159
160160
Compute scalar anomaly scores from the input rows and append them to the output rows.
161161
@@ -217,14 +217,14 @@ framework. Build an executable jar containing the benchmark code by running
217217
To invoke the full benchmark suite:
218218

219219
```text
220-
% java -jar benchmark/target/randomcutforest-benchmark-3.0-rc3-jar-with-dependencies.jar
220+
% java -jar benchmark/target/randomcutforest-benchmark-3.0.0-jar-with-dependencies.jar
221221
```
222222

223223
The full benchmark suite takes a long time to run. You can also pass a regex at the command-line, then only matching
224224
benchmark methods will be executed.
225225

226226
```text
227-
% java -jar benchmark/target/randomcutforest-benchmark-3.0-rc3-jar-with-dependencies.jar RandomCutForestBenchmark\.updateAndGetAnomalyScore
227+
% java -jar benchmark/target/randomcutforest-benchmark-3.0.0-jar-with-dependencies.jar RandomCutForestBenchmark\.updateAndGetAnomalyScore
228228
```
229229

230230
[rcf-paper]: http://proceedings.mlr.press/v48/guha16.pdf

Java/benchmark/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>software.amazon.randomcutforest</groupId>
88
<artifactId>randomcutforest-parent</artifactId>
9-
<version>3.0-rc3</version>
9+
<version>3.0.0</version>
1010
</parent>
1111

1212
<artifactId>randomcutforest-benchmark</artifactId>

Java/core/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>software.amazon.randomcutforest</groupId>
88
<artifactId>randomcutforest-parent</artifactId>
9-
<version>3.0-rc3</version>
9+
<version>3.0.0</version>
1010
</parent>
1111

1212
<artifactId>randomcutforest-core</artifactId>

Java/examples/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>software.amazon.randomcutforest</groupId>
99
<artifactId>randomcutforest-parent</artifactId>
10-
<version>3.0-rc3</version>
10+
<version>3.0.0</version>
1111
</parent>
1212

1313
<artifactId>randomcutforest-examples</artifactId>

Java/parkservices/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>software.amazon.randomcutforest</groupId>
88
<artifactId>randomcutforest-parent</artifactId>
9-
<version>3.0-rc3</version>
9+
<version>3.0.0</version>
1010
</parent>
1111

1212
<artifactId>randomcutforest-parkservices</artifactId>

Java/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>software.amazon.randomcutforest</groupId>
66
<artifactId>randomcutforest-parent</artifactId>
7-
<version>3.0-rc3</version>
7+
<version>3.0.0</version>
88
<packaging>pom</packaging>
99

1010
<name>software.amazon.randomcutforest:randomcutforest</name>

Java/serialization/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>software.amazon.randomcutforest</groupId>
99
<artifactId>randomcutforest-parent</artifactId>
10-
<version>3.0-rc3</version>
10+
<version>3.0.0</version>
1111
</parent>
1212

1313
<artifactId>randomcutforest-serialization</artifactId>

Java/testutils/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<artifactId>randomcutforest-parent</artifactId>
66
<groupId>software.amazon.randomcutforest</groupId>
7-
<version>3.0-rc3</version>
7+
<version>3.0.0</version>
88
</parent>
99

1010
<artifactId>randomcutforest-testutils</artifactId>

0 commit comments

Comments
 (0)