xgboost
This commit is contained in:
25
script/compare.ts
Normal file
25
script/compare.ts
Normal file
@@ -0,0 +1,25 @@
|
||||
import Bun from 'bun';
|
||||
import { parseArgs } from 'node:util';
|
||||
|
||||
const { values } = parseArgs({
|
||||
args: Bun.argv,
|
||||
options: {
|
||||
workingDir: {
|
||||
type: "string"
|
||||
},
|
||||
tja: {
|
||||
type: "string"
|
||||
},
|
||||
predictScript: {
|
||||
type: "string"
|
||||
},
|
||||
},
|
||||
allowPositionals: true,
|
||||
});
|
||||
|
||||
if (!values.tja || !values.workingDir || !values.predictScript) {
|
||||
console.error("--workingDir --dataDir --trainDir");
|
||||
process.exit(1);
|
||||
}
|
||||
|
||||
const songno = "temp";
|
||||
Reference in New Issue
Block a user