This commit is contained in:
2026-04-20 00:21:53 +09:00
parent 4b08883f69
commit 53e9908167
31 changed files with 3535 additions and 111 deletions

9
scripts/run_predict.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
TJA_DIR=$1
if [ -z "$TJA_DIR" ]; then echo "사용법: $0 <tja_폴더_경로>"; exit 1; fi
echo "--- 채보 상수 예측 시작 ---"
for f in $(find "$TJA_DIR" -name "*.tja"); do
bun run scripts/factorize.ts "$f" > /dev/null
# 결과 JSON을 읽어 예측을 수행하는 로직을 predict.ts에 통합하는 것을 추천합니다.
echo "예측 작업이 완료되었습니다."
done