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.
32 lines
565 B
32 lines
565 B
4 years ago
|
/*!
|
||
|
* find-pkg <https://github.com/jonschlinkert/find-pkg>
|
||
|
*
|
||
|
* Copyright (c) 2015, Jon Schlinkert.
|
||
|
* Licensed under the MIT License.
|
||
|
*/
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
/**
|
||
|
* Module dependencies
|
||
|
*/
|
||
|
|
||
|
var findFile = require('find-file-up');
|
||
|
|
||
|
/**
|
||
|
* Find package.json, starting with the given directory.
|
||
|
* Based on https://github.com/jonschlinkert/look-up
|
||
|
*/
|
||
|
|
||
|
module.exports = function(dir, limit, cb) {
|
||
|
return findFile('package.json', dir, limit, cb);
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Sync
|
||
|
*/
|
||
|
|
||
|
module.exports.sync = function(dir, limit) {
|
||
|
return findFile.sync('package.json', dir, limit);
|
||
|
};
|