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.
35 lines
542 B
35 lines
542 B
4 years ago
|
'use strict';
|
||
|
|
||
|
var debug = require('../debug');
|
||
|
var path = require('path');
|
||
|
|
||
|
/**
|
||
|
* Set the current working directory.
|
||
|
*
|
||
|
* ```json
|
||
|
* {
|
||
|
* "name": "my-project",
|
||
|
* "verb": {
|
||
|
* "cwd": "foo/bar"
|
||
|
* }
|
||
|
* }
|
||
|
* ```
|
||
|
* @name cwd
|
||
|
* @api public
|
||
|
*/
|
||
|
|
||
|
module.exports = function(app) {
|
||
|
var cwds = [app.cwd || process.cwd()];
|
||
|
|
||
|
return function(val, key, config, next) {
|
||
|
debug.field(key, val);
|
||
|
val = path.resolve(val);
|
||
|
if (cwds[cwds.length - 1] !== val) {
|
||
|
app.cwd = val;
|
||
|
cwds.push(val);
|
||
|
}
|
||
|
next();
|
||
|
};
|
||
|
};
|
||
|
|