From 016d6a1f129a38d3fa9c651d445204c0ece75c67 Mon Sep 17 00:00:00 2001 From: Sudipto Guha Date: Wed, 29 Jun 2022 13:29:08 -0700 Subject: [PATCH] version now is 3.0.0 (#335) * version now is 3.0.0 * updating readme --- Java/README.md | 10 +++++----- Java/benchmark/pom.xml | 2 +- Java/core/pom.xml | 2 +- Java/examples/pom.xml | 2 +- Java/parkservices/pom.xml | 2 +- Java/pom.xml | 2 +- Java/serialization/pom.xml | 2 +- Java/testutils/pom.xml | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Java/README.md b/Java/README.md index 5d9c90cb..1d1e07b6 100644 --- a/Java/README.md +++ b/Java/README.md @@ -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 @@ -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. @@ -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 diff --git a/Java/benchmark/pom.xml b/Java/benchmark/pom.xml index f5f40e5d..466c3b0c 100644 --- a/Java/benchmark/pom.xml +++ b/Java/benchmark/pom.xml @@ -6,7 +6,7 @@ software.amazon.randomcutforest randomcutforest-parent - 3.0-rc3 + 3.0.0 randomcutforest-benchmark diff --git a/Java/core/pom.xml b/Java/core/pom.xml index e7e0093f..fb5e6abc 100644 --- a/Java/core/pom.xml +++ b/Java/core/pom.xml @@ -6,7 +6,7 @@ software.amazon.randomcutforest randomcutforest-parent - 3.0-rc3 + 3.0.0 randomcutforest-core diff --git a/Java/examples/pom.xml b/Java/examples/pom.xml index c63a0940..7c0b7324 100644 --- a/Java/examples/pom.xml +++ b/Java/examples/pom.xml @@ -7,7 +7,7 @@ software.amazon.randomcutforest randomcutforest-parent - 3.0-rc3 + 3.0.0 randomcutforest-examples diff --git a/Java/parkservices/pom.xml b/Java/parkservices/pom.xml index 596384bb..84dcce10 100644 --- a/Java/parkservices/pom.xml +++ b/Java/parkservices/pom.xml @@ -6,7 +6,7 @@ software.amazon.randomcutforest randomcutforest-parent - 3.0-rc3 + 3.0.0 randomcutforest-parkservices diff --git a/Java/pom.xml b/Java/pom.xml index 50260889..44a09227 100644 --- a/Java/pom.xml +++ b/Java/pom.xml @@ -4,7 +4,7 @@ software.amazon.randomcutforest randomcutforest-parent - 3.0-rc3 + 3.0.0 pom software.amazon.randomcutforest:randomcutforest diff --git a/Java/serialization/pom.xml b/Java/serialization/pom.xml index c9792306..e03e2436 100644 --- a/Java/serialization/pom.xml +++ b/Java/serialization/pom.xml @@ -7,7 +7,7 @@ software.amazon.randomcutforest randomcutforest-parent - 3.0-rc3 + 3.0.0 randomcutforest-serialization diff --git a/Java/testutils/pom.xml b/Java/testutils/pom.xml index ce958c0d..e71b62ca 100644 --- a/Java/testutils/pom.xml +++ b/Java/testutils/pom.xml @@ -4,7 +4,7 @@ randomcutforest-parent software.amazon.randomcutforest - 3.0-rc3 + 3.0.0 randomcutforest-testutils