rcf 0.1.1 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/README.md +2 -2
- data/lib/rcf/forest.rb +1 -6
- data/lib/rcf/version.rb +1 -1
- data/vendor/aarch64-linux/LICENSE-THIRD-PARTY +132 -1683
- data/vendor/aarch64-linux/README.md +6 -5
- data/vendor/aarch64-linux/lib/librcf.so +0 -0
- data/vendor/arm64-darwin/LICENSE-THIRD-PARTY +132 -1683
- data/vendor/arm64-darwin/README.md +6 -5
- data/vendor/arm64-darwin/lib/librcf.dylib +0 -0
- data/vendor/x64-mingw/LICENSE-THIRD-PARTY +135 -1901
- data/vendor/x64-mingw/README.md +5 -4
- data/vendor/x64-mingw/lib/rcf.dll +0 -0
- data/vendor/x86_64-darwin/LICENSE-THIRD-PARTY +132 -1683
- data/vendor/x86_64-darwin/README.md +6 -5
- data/vendor/x86_64-darwin/lib/librcf.dylib +0 -0
- data/vendor/x86_64-linux/LICENSE-THIRD-PARTY +132 -1683
- data/vendor/x86_64-linux/README.md +6 -5
- data/vendor/x86_64-linux/lib/librcf.so +0 -0
- metadata +19 -5
@@ -4,15 +4,15 @@
|
|
4
4
|
|
5
5
|
:evergreen_tree: Also available for [Ruby](https://github.com/ankane/random-cut-forest-ruby) and [PHP](https://github.com/ankane/random-cut-forest-php), and as a [CLI](https://github.com/ankane/rcf-cli)
|
6
6
|
|
7
|
-
[](https://github.com/ankane/librcf/actions)
|
8
8
|
|
9
9
|
## Installation
|
10
10
|
|
11
11
|
Download the latest version:
|
12
12
|
|
13
|
-
- Linux - [x86_64](https://github.com/ankane/librcf/releases/download/v0.
|
14
|
-
- Mac - [x86_64](https://github.com/ankane/librcf/releases/download/v0.
|
15
|
-
- Windows - [x86_64](https://github.com/ankane/librcf/releases/download/v0.
|
13
|
+
- Linux - [x86_64](https://github.com/ankane/librcf/releases/download/v0.2.0/librcf-0.2.0-x86_64-unknown-linux-gnu.tar.gz) or [arm64](https://github.com/ankane/librcf/releases/download/v0.2.0/librcf-0.2.0-aarch64-unknown-linux-gnu.tar.gz)
|
14
|
+
- Mac - [x86_64](https://github.com/ankane/librcf/releases/download/v0.2.0/librcf-0.2.0-x86_64-apple-darwin.tar.gz) or [arm64](https://github.com/ankane/librcf/releases/download/v0.2.0/librcf-0.2.0-aarch64-apple-darwin.tar.gz)
|
15
|
+
- Windows - [x86_64](https://github.com/ankane/librcf/releases/download/v0.2.0/librcf-0.2.0-x86_64-pc-windows-msvc.zip)
|
16
16
|
|
17
17
|
You can also install it with Homebrew:
|
18
18
|
|
@@ -106,12 +106,13 @@ Name | Description | Default Value
|
|
106
106
|
Parameter values should always be passed as strings.
|
107
107
|
|
108
108
|
```c
|
109
|
+
rcf_set_param(forest, "sample_size", "256");
|
109
110
|
rcf_set_param(forest, "parallel", "true");
|
110
111
|
```
|
111
112
|
|
112
113
|
`rcf_set_param` returns zero if successful and nonzero if the name or value is invalid or if it’s called after `rcf_score` or `rcf_update`.
|
113
114
|
|
114
|
-
##
|
115
|
+
## References
|
115
116
|
|
116
117
|
- [Robust Random Cut Forest Based Anomaly Detection On Streams](https://proceedings.mlr.press/v48/guha16.pdf)
|
117
118
|
|
Binary file
|