From 27ec2b18d1017aa1eeb33442d9df853704ba23ac Mon Sep 17 00:00:00 2001 From: Amit Galitzky Date: Wed, 8 Jun 2022 16:55:18 -0700 Subject: [PATCH] version bump to rc3 (#332) Signed-off-by: Amit Galitzky --- 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 a0615863..5d9c90cb 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-rc2.1.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner < ../example-data/rcf-paper.csv > example_output.csv +$ java -cp core/target/randomcutforest-core-3.0-rc3.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-rc2.1.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner --help -Usage: java -cp target/random-cut-forest-3.0-rc2.1.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner [options] < input_file > output_file +$ 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 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-rc2.1-jar-with-dependencies.jar +% java -jar benchmark/target/randomcutforest-benchmark-3.0-rc3-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-rc2.1-jar-with-dependencies.jar RandomCutForestBenchmark\.updateAndGetAnomalyScore +% java -jar benchmark/target/randomcutforest-benchmark-3.0-rc3-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 2f534df6..f5f40e5d 100644 --- a/Java/benchmark/pom.xml +++ b/Java/benchmark/pom.xml @@ -6,7 +6,7 @@ software.amazon.randomcutforest randomcutforest-parent - 3.0-rc2.1 + 3.0-rc3 randomcutforest-benchmark diff --git a/Java/core/pom.xml b/Java/core/pom.xml index 5c8fafcc..e7e0093f 100644 --- a/Java/core/pom.xml +++ b/Java/core/pom.xml @@ -6,7 +6,7 @@ software.amazon.randomcutforest randomcutforest-parent - 3.0-rc2.1 + 3.0-rc3 randomcutforest-core diff --git a/Java/examples/pom.xml b/Java/examples/pom.xml index 3749d0e7..c63a0940 100644 --- a/Java/examples/pom.xml +++ b/Java/examples/pom.xml @@ -7,7 +7,7 @@ software.amazon.randomcutforest randomcutforest-parent - 3.0-rc2.1 + 3.0-rc3 randomcutforest-examples diff --git a/Java/parkservices/pom.xml b/Java/parkservices/pom.xml index df7bcd7b..596384bb 100644 --- a/Java/parkservices/pom.xml +++ b/Java/parkservices/pom.xml @@ -6,7 +6,7 @@ software.amazon.randomcutforest randomcutforest-parent - 3.0-rc2.1 + 3.0-rc3 randomcutforest-parkservices diff --git a/Java/pom.xml b/Java/pom.xml index 5a93409b..50260889 100644 --- a/Java/pom.xml +++ b/Java/pom.xml @@ -4,7 +4,7 @@ software.amazon.randomcutforest randomcutforest-parent - 3.0-rc2.1 + 3.0-rc3 pom software.amazon.randomcutforest:randomcutforest diff --git a/Java/serialization/pom.xml b/Java/serialization/pom.xml index 64b11b4b..c9792306 100644 --- a/Java/serialization/pom.xml +++ b/Java/serialization/pom.xml @@ -7,7 +7,7 @@ software.amazon.randomcutforest randomcutforest-parent - 3.0-rc2.1 + 3.0-rc3 randomcutforest-serialization diff --git a/Java/testutils/pom.xml b/Java/testutils/pom.xml index 92a6884f..ce958c0d 100644 --- a/Java/testutils/pom.xml +++ b/Java/testutils/pom.xml @@ -4,7 +4,7 @@ randomcutforest-parent software.amazon.randomcutforest - 3.0-rc2.1 + 3.0-rc3 randomcutforest-testutils