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.
20 lines
362 B
20 lines
362 B
4 years ago
|
var test = require('tape');
|
||
|
var equal = require('../equals')
|
||
|
var rv = require('../index');
|
||
|
|
||
|
test('(1/5) == 1/5', function(t) {
|
||
|
var a = rv([1/5]);
|
||
|
var b = rv([1/5]);
|
||
|
|
||
|
t.deepEqual(equal(a, b), true, '[0]');
|
||
|
t.end();
|
||
|
});
|
||
|
|
||
|
test('(1/5) != 1/2', function(t) {
|
||
|
var a = rv([1/5]);
|
||
|
var b = rv([1/2]);
|
||
|
|
||
|
t.deepEqual(equal(a, b), false, '[0]');
|
||
|
t.end();
|
||
|
});
|