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.
38 lines
636 B
38 lines
636 B
'use strict';
|
|
|
|
var utils = require('lazy-cache')(require);
|
|
var fn = require;
|
|
require = utils;
|
|
|
|
/**
|
|
* Lazily required module dependencies
|
|
*/
|
|
|
|
require('extend-shallow', 'extend');
|
|
require('is-valid-app', 'isValid');
|
|
require('log-utils', 'log');
|
|
require('micromatch', 'mm');
|
|
require('time-diff', 'Time');
|
|
require = fn;
|
|
|
|
/**
|
|
* Expose `colors` from log-utils
|
|
*/
|
|
|
|
utils.colors = utils.log.colors;
|
|
|
|
/**
|
|
* Formatted timestamp
|
|
*/
|
|
|
|
utils.timestamp = function() {
|
|
var args = [].slice.call(arguments);
|
|
args.unshift(utils.log.timestamp);
|
|
console.error.apply(console, args);
|
|
};
|
|
|
|
/**
|
|
* Expose `utils` modules
|
|
*/
|
|
|
|
module.exports = utils;
|
|
|