文件名称:weighted-reservoir-sampler:从流中采样随机子集
文件大小:6KB
文件格式:ZIP
更新时间:2024-07-15 12:23:03
JavaScript
加权油藏采样器 从流中采样随机子集。 npm install weighted-reservoir-sampler 该包是 A-ES 算法的实现,如所述。 基本用法 var Sampler = require ( 'weighted-reservoir-sampler' ) ; // Example of a sampler which is twice as likely to select odd numbers var sampler = new Sampler ( { sampleSize : 9 , weightFunction : function ( item ) { return ( item % 2 ) + 1 ; } } ) ; for ( var i = 0 ; i < 150 ; i ++ ) { sampler . push ( i ) ;
【文件预览】:
weighted-reservoir-sampler-master
----.gitignore(587B)
----package.json(844B)
----bin()
--------test.js(284B)
----LICENSE(1KB)
----README.md(3KB)
----weighted-reservoir-sampler.js(3KB)
----test()
--------weighted-reservoir-sampler.js(4KB)