@@ -157,7 +157,7 @@ vector data point, scores the data point, and then updates the model with this
157
157
point. The program output appends a column of anomaly scores to the input:
158
158
159
159
``` text
160
- $ java -cp core/target/randomcutforest-core-3.5 .0.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner < ../example-data/rcf-paper.csv > example_output.csv
160
+ $ java -cp core/target/randomcutforest-core-4.1 .0.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner < ../example-data/rcf-paper.csv > example_output.csv
161
161
$ tail example_output.csv
162
162
-5.0029,0.0170,-0.0057,0.8129401629464965
163
163
-4.9975,-0.0102,-0.0065,0.6591046054520615
@@ -176,8 +176,8 @@ read additional usage instructions, including options for setting model
176
176
hyperparameters, using the ` --help ` flag:
177
177
178
178
``` text
179
- $ java -cp core/target/randomcutforest-core-3.5 .0.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner --help
180
- Usage: java -cp target/random-cut-forest-3.5 .0.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner [options] < input_file > output_file
179
+ $ java -cp core/target/randomcutforest-core-4.1 .0.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner --help
180
+ Usage: java -cp target/random-cut-forest-4.1 .0.jar com.amazon.randomcutforest.runner.AnomalyScoreRunner [options] < input_file > output_file
181
181
182
182
Compute scalar anomaly scores from the input rows and append them to the output rows.
183
183
@@ -239,14 +239,14 @@ framework. Build an executable jar containing the benchmark code by running
239
239
To invoke the full benchmark suite:
240
240
241
241
``` text
242
- % java -jar benchmark/target/randomcutforest-benchmark-3.5 .0-jar-with-dependencies.jar
242
+ % java -jar benchmark/target/randomcutforest-benchmark-4.1 .0-jar-with-dependencies.jar
243
243
```
244
244
245
245
The full benchmark suite takes a long time to run. You can also pass a regex at the command-line, then only matching
246
246
benchmark methods will be executed.
247
247
248
248
``` text
249
- % java -jar benchmark/target/randomcutforest-benchmark-3.5 .0-jar-with-dependencies.jar RandomCutForestBenchmark\.updateAndGetAnomalyScore
249
+ % java -jar benchmark/target/randomcutforest-benchmark-4.1 .0-jar-with-dependencies.jar RandomCutForestBenchmark\.updateAndGetAnomalyScore
250
250
```
251
251
252
252
[ rcf-paper ] : http://proceedings.mlr.press/v48/guha16.pdf
0 commit comments