diff --git a/Java/README.md b/Java/README.md index ffa1b75c..1a750bd7 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-2.0.1.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner < ../example-data/rcf-paper.csv > example_output.csv +$ java -cp core/target/randomcutforest-core-3.0-rc1.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-2.0.1.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner --help -Usage: java -cp target/random-cut-forest-2.0.1.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner [options] < input_file > output_file +$ java -cp core/target/randomcutforest-core-3.0-rc1.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner --help +Usage: java -cp target/random-cut-forest-3.0-rc1.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-2.0.1-jar-with-dependencies.jar +% java -jar benchmark/target/randomcutforest-benchmark-3.0-rc1-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-2.0.1-jar-with-dependencies.jar RandomCutForestBenchmark\.updateAndGetAnomalyScore +% java -jar benchmark/target/randomcutforest-benchmark-3.0-rc1-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 92ef020a..40ed71f4 100644 --- a/Java/benchmark/pom.xml +++ b/Java/benchmark/pom.xml @@ -6,7 +6,7 @@ software.amazon.randomcutforest randomcutforest-parent - 2.0.1 + 3.0-rc1 randomcutforest-benchmark diff --git a/Java/core/pom.xml b/Java/core/pom.xml index 167ba1ed..4e798a7c 100644 --- a/Java/core/pom.xml +++ b/Java/core/pom.xml @@ -6,7 +6,7 @@ software.amazon.randomcutforest randomcutforest-parent - 2.0.1 + 3.0-rc1 randomcutforest-core diff --git a/Java/examples/pom.xml b/Java/examples/pom.xml index 323152cd..25cefb63 100644 --- a/Java/examples/pom.xml +++ b/Java/examples/pom.xml @@ -7,7 +7,7 @@ software.amazon.randomcutforest randomcutforest-parent - 2.0.1 + 3.0-rc1 randomcutforest-examples diff --git a/Java/parkservices/pom.xml b/Java/parkservices/pom.xml index 4f83bcd1..321dbccd 100644 --- a/Java/parkservices/pom.xml +++ b/Java/parkservices/pom.xml @@ -6,7 +6,7 @@ software.amazon.randomcutforest randomcutforest-parent - 2.0.1 + 3.0-rc1 randomcutforest-parkservices diff --git a/Java/pom.xml b/Java/pom.xml index 6dc77f26..20dec125 100644 --- a/Java/pom.xml +++ b/Java/pom.xml @@ -4,7 +4,7 @@ software.amazon.randomcutforest randomcutforest-parent - 2.0.1 + 3.0-rc1 pom software.amazon.randomcutforest:randomcutforest diff --git a/Java/serialization/pom.xml b/Java/serialization/pom.xml index 9ec9b98d..455e4707 100644 --- a/Java/serialization/pom.xml +++ b/Java/serialization/pom.xml @@ -7,7 +7,7 @@ software.amazon.randomcutforest randomcutforest-parent - 2.0.1 + 3.0-rc1 randomcutforest-serialization diff --git a/Java/testutils/pom.xml b/Java/testutils/pom.xml index cb159006..9f6cb175 100644 --- a/Java/testutils/pom.xml +++ b/Java/testutils/pom.xml @@ -4,7 +4,7 @@ randomcutforest-parent software.amazon.randomcutforest - 2.0.1 + 3.0-rc1 randomcutforest-testutils