@@ -135,7 +135,7 @@ vector data point, scores the data point, and then updates the model with this
135
135
point. The program output appends a column of anomaly scores to the input:
136
136
137
137
``` text
138
- $ java -cp core/target/randomcutforest-core-3.0-rc3 .jar com.amazon.randomcutforest.runner.AnomalyScoreRunner < ../example-data/rcf-paper.csv > example_output.csv
138
+ $ java -cp core/target/randomcutforest-core-3.0.0 .jar com.amazon.randomcutforest.runner.AnomalyScoreRunner < ../example-data/rcf-paper.csv > example_output.csv
139
139
$ tail example_output.csv
140
140
-5.0029,0.0170,-0.0057,0.8129401629464965
141
141
-4.9975,-0.0102,-0.0065,0.6591046054520615
@@ -154,8 +154,8 @@ read additional usage instructions, including options for setting model
154
154
hyperparameters, using the ` --help ` flag:
155
155
156
156
``` text
157
- $ java -cp core/target/randomcutforest-core-3.0-rc3 .jar com.amazon.randomcutforest.runner.AnomalyScoreRunner --help
158
- Usage: java -cp target/random-cut-forest-3.0-rc3 .jar com.amazon.randomcutforest.runner.AnomalyScoreRunner [options] < input_file > output_file
157
+ $ java -cp core/target/randomcutforest-core-3.0.0 .jar com.amazon.randomcutforest.runner.AnomalyScoreRunner --help
158
+ Usage: java -cp target/random-cut-forest-3.0.0 .jar com.amazon.randomcutforest.runner.AnomalyScoreRunner [options] < input_file > output_file
159
159
160
160
Compute scalar anomaly scores from the input rows and append them to the output rows.
161
161
@@ -217,14 +217,14 @@ framework. Build an executable jar containing the benchmark code by running
217
217
To invoke the full benchmark suite:
218
218
219
219
``` text
220
- % java -jar benchmark/target/randomcutforest-benchmark-3.0-rc3 -jar-with-dependencies.jar
220
+ % java -jar benchmark/target/randomcutforest-benchmark-3.0.0 -jar-with-dependencies.jar
221
221
```
222
222
223
223
The full benchmark suite takes a long time to run. You can also pass a regex at the command-line, then only matching
224
224
benchmark methods will be executed.
225
225
226
226
``` text
227
- % java -jar benchmark/target/randomcutforest-benchmark-3.0-rc3 -jar-with-dependencies.jar RandomCutForestBenchmark\.updateAndGetAnomalyScore
227
+ % java -jar benchmark/target/randomcutforest-benchmark-3.0.0 -jar-with-dependencies.jar RandomCutForestBenchmark\.updateAndGetAnomalyScore
228
228
```
229
229
230
230
[ rcf-paper ] : http://proceedings.mlr.press/v48/guha16.pdf
0 commit comments