StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
402 B
12 lines
402 B
var exports = module.exports = function (alg) {
|
|
var Alg = exports[alg]
|
|
if(!Alg) throw new Error(alg + ' is not supported (we accept pull requests)')
|
|
return new Alg()
|
|
}
|
|
|
|
var Buffer = require('buffer').Buffer
|
|
var Hash = require('./hash')(Buffer)
|
|
|
|
exports.sha1 = require('./sha1')(Buffer, Hash)
|
|
exports.sha256 = require('./sha256')(Buffer, Hash)
|
|
exports.sha512 = require('./sha512')(Buffer, Hash)
|
|
|