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.
34 lines
557 B
34 lines
557 B
var test = require("tape")
|
|
, invert = require("../index.js")
|
|
|
|
function check_array(t, a, b) {
|
|
var a_str = invert(a).join(",")
|
|
var b_str = b.join(",")
|
|
t.equals(a_str, b_str)
|
|
}
|
|
|
|
|
|
test("0", function(t) {
|
|
check_array(t, [], [])
|
|
t.end()
|
|
})
|
|
|
|
test("1", function(t) {
|
|
check_array(t, [0], [0])
|
|
t.end()
|
|
})
|
|
|
|
|
|
test("2", function(t) {
|
|
check_array(t, [0,1], [0,1])
|
|
check_array(t, [1,0], [1,0])
|
|
t.end()
|
|
})
|
|
|
|
test("3", function(t) {
|
|
check_array(t, [0,1,2], [0,1,2])
|
|
check_array(t, [2,1,0], [2,1,0])
|
|
check_array(t, [1,2,0], [2,0,1])
|
|
t.end()
|
|
})
|
|
|
|
|