This commit is contained in:
2026-04-25 03:04:52 +09:00
parent 8a8c0c9713
commit da4201fb20
11 changed files with 17829 additions and 105 deletions

25
script/compare.ts Normal file
View 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";