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.
19 lines
521 B
19 lines
521 B
#!/usr/bin/env node
|
|
|
|
'use strict';
|
|
|
|
var resolve = require('resolve-protobuf-schema');
|
|
var compile = require('../compile');
|
|
|
|
if (process.argv.length < 3) {
|
|
console.error('Usage: pbf [file.proto] [--browser] [--no-read] [--no-write]');
|
|
return;
|
|
}
|
|
|
|
var code = compile.raw(resolve.sync(process.argv[2]), {
|
|
exports: process.argv.indexOf('--browser') >= 0 ? 'self' : 'exports',
|
|
noRead: process.argv.indexOf('--no-read') >= 0,
|
|
noWrite: process.argv.indexOf('--no-write') >= 0
|
|
});
|
|
|
|
process.stdout.write(code);
|
|
|