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.
23 lines
626 B
23 lines
626 B
4 years ago
|
/*
|
||
|
* This file will highlight itself using a custom theme when run via: "node highlight-self-hide-semicolons"
|
||
|
* The custom theme highlights semicolons as 'black', thus hiding them.
|
||
|
*/
|
||
|
|
||
|
var cardinal = require('..')
|
||
|
, hideSemicolonsTheme = require('../themes/hide-semicolons');
|
||
|
|
||
|
function highlight () {
|
||
|
|
||
|
// Using the synchronous highlightFileSync()
|
||
|
// For asynchronous highlighting use: highlightFile() - see highlight-self.js
|
||
|
|
||
|
try {
|
||
|
var highlighted = cardinal.highlightFileSync(__filename, hideSemicolonsTheme);
|
||
|
console.log(highlighted);
|
||
|
} catch (err) {
|
||
|
console.error(err);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
highlight();
|