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.
28 lines
720 B
28 lines
720 B
'use strict';
|
|
const os = require('os');
|
|
const path = require('path');
|
|
|
|
const home = os.homedir();
|
|
const env = process.env;
|
|
|
|
exports.data = env.XDG_DATA_HOME ||
|
|
(home ? path.join(home, '.local', 'share') : null);
|
|
|
|
exports.config = env.XDG_CONFIG_HOME ||
|
|
(home ? path.join(home, '.config') : null);
|
|
|
|
exports.cache = env.XDG_CACHE_HOME || (home ? path.join(home, '.cache') : null);
|
|
|
|
exports.runtime = env.XDG_RUNTIME_DIR || null;
|
|
|
|
exports.dataDirs = (env.XDG_DATA_DIRS || '/usr/local/share/:/usr/share/').split(':');
|
|
|
|
if (exports.data) {
|
|
exports.dataDirs.unshift(exports.data);
|
|
}
|
|
|
|
exports.configDirs = (env.XDG_CONFIG_DIRS || '/etc/xdg').split(':');
|
|
|
|
if (exports.config) {
|
|
exports.configDirs.unshift(exports.config);
|
|
}
|
|
|