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.
25 lines
774 B
25 lines
774 B
var os = require('os');
|
|
|
|
var platform = os.platform();
|
|
|
|
if(platform == "darwin") {
|
|
if(process.version.match(/^v6.*/)) {
|
|
module.exports = require("./darwin_x64/allofw.v6.node");
|
|
}
|
|
if(process.version.match(/^v7.*/)) {
|
|
module.exports = require("./darwin_x64/allofw.v7.node");
|
|
}
|
|
if(process.version.match(/^v8.*/)) {
|
|
module.exports = require("./darwin_x64/allofw.v8.node");
|
|
}
|
|
if(process.version.match(/^v9.*/)) {
|
|
module.exports = require("./darwin_x64/allofw.v9.node");
|
|
}
|
|
}
|
|
if(platform == "win32") {
|
|
module.exports = require("./win32_x64/allofw.node");
|
|
module.exports.OpenVR = require("./win32_x64/allofw_openvr.node");
|
|
}
|
|
if(platform == "linux") {
|
|
module.exports = require("./linux_x64/allofw.node");
|
|
}
|
|
|