Skip to content

Commit

Permalink
increment to 3.0.1-SNAPSHOT (#341)
Browse files Browse the repository at this point in the history
* increment to 3.0.1-SNAPSHOT

Signed-off-by: Amit Galitzky <amgalitz@amazon.com>

* change refrence of master to main

Signed-off-by: Amit Galitzky <amgalitz@amazon.com>
  • Loading branch information
amitgalitz committed Jul 8, 2022
1 parent d40616d commit 111041d
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
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.0.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner < ../example-data/rcf-paper.csv > example_output.csv
$ java -cp core/target/randomcutforest-core-3.0.1-SNAPSHOT.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.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
$ java -cp core/target/randomcutforest-core-3.0.1-SNAPSHOT.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner --help
Usage: java -cp target/random-cut-forest-3.0.1-SNAPSHOT.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.0-jar-with-dependencies.jar
% java -jar benchmark/target/randomcutforest-benchmark-3.0.1-SNAPSHOT-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.0-jar-with-dependencies.jar RandomCutForestBenchmark\.updateAndGetAnomalyScore
% java -jar benchmark/target/randomcutforest-benchmark-3.0.1-SNAPSHOT-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.0</version>
<version>3.0.1-SNAPSHOT</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.0</version>
<version>3.0.1-SNAPSHOT</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.0</version>
<version>3.0.1-SNAPSHOT</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.0</version>
<version>3.0.1-SNAPSHOT</version>
</parent>

<artifactId>randomcutforest-parkservices</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions 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.0</version>
<version>3.0.1-SNAPSHOT</version>
<packaging>pom</packaging>

<name>software.amazon.randomcutforest:randomcutforest</name>
Expand Down Expand Up @@ -236,6 +236,6 @@
<scm>
<connection>scm:git:git://github.com/aws/random-cut-forest-by-aws.git</connection>
<developerConnection>scm:git:ssh://github.com/aws/random-cut-forest-by-aws.git</developerConnection>
<url>https://github.com/aws/random-cut-forest-by-aws/tree/master</url>
<url>https://github.com/aws/random-cut-forest-by-aws/tree/main</url>
</scm>
</project>
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.0</version>
<version>3.0.1-SNAPSHOT</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.0</version>
<version>3.0.1-SNAPSHOT</version>
</parent>

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

0 comments on commit 111041d

Please sign in to comment.