Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

version now is 3.0.0 #335

Merged
merged 2 commits into from
Jun 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Java/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ vector data point, scores the data point, and then updates the model with this
point. The program output appends a column of anomaly scores to the input:

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

```text
$ java -cp core/target/randomcutforest-core-3.0-rc3.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner --help
Usage: java -cp target/random-cut-forest-3.0-rc3.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner [options] < input_file > output_file
$ java -cp core/target/randomcutforest-core-3.0.0.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner --help
Usage: java -cp target/random-cut-forest-3.0.0.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner [options] < input_file > output_file

Compute scalar anomaly scores from the input rows and append them to the output rows.

Expand Down Expand Up @@ -217,14 +217,14 @@ framework. Build an executable jar containing the benchmark code by running
To invoke the full benchmark suite:

```text
% java -jar benchmark/target/randomcutforest-benchmark-3.0-rc3-jar-with-dependencies.jar
% java -jar benchmark/target/randomcutforest-benchmark-3.0.0-jar-with-dependencies.jar
```

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

```text
% java -jar benchmark/target/randomcutforest-benchmark-3.0-rc3-jar-with-dependencies.jar RandomCutForestBenchmark\.updateAndGetAnomalyScore
% java -jar benchmark/target/randomcutforest-benchmark-3.0.0-jar-with-dependencies.jar RandomCutForestBenchmark\.updateAndGetAnomalyScore
```

[rcf-paper]: http://proceedings.mlr.press/v48/guha16.pdf
2 changes: 1 addition & 1 deletion Java/benchmark/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>software.amazon.randomcutforest</groupId>
<artifactId>randomcutforest-parent</artifactId>
<version>3.0-rc3</version>
<version>3.0.0</version>
</parent>

<artifactId>randomcutforest-benchmark</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion Java/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>software.amazon.randomcutforest</groupId>
<artifactId>randomcutforest-parent</artifactId>
<version>3.0-rc3</version>
<version>3.0.0</version>
</parent>

<artifactId>randomcutforest-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion Java/examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>software.amazon.randomcutforest</groupId>
<artifactId>randomcutforest-parent</artifactId>
<version>3.0-rc3</version>
<version>3.0.0</version>
</parent>

<artifactId>randomcutforest-examples</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion Java/parkservices/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>software.amazon.randomcutforest</groupId>
<artifactId>randomcutforest-parent</artifactId>
<version>3.0-rc3</version>
<version>3.0.0</version>
</parent>

<artifactId>randomcutforest-parkservices</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion Java/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>software.amazon.randomcutforest</groupId>
<artifactId>randomcutforest-parent</artifactId>
<version>3.0-rc3</version>
<version>3.0.0</version>
<packaging>pom</packaging>

<name>software.amazon.randomcutforest:randomcutforest</name>
Expand Down
2 changes: 1 addition & 1 deletion Java/serialization/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>software.amazon.randomcutforest</groupId>
<artifactId>randomcutforest-parent</artifactId>
<version>3.0-rc3</version>
<version>3.0.0</version>
</parent>

<artifactId>randomcutforest-serialization</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion Java/testutils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<artifactId>randomcutforest-parent</artifactId>
<groupId>software.amazon.randomcutforest</groupId>
<version>3.0-rc3</version>
<version>3.0.0</version>
</parent>

<artifactId>randomcutforest-testutils</artifactId>
Expand Down