phase 1
This commit is contained in:
9
scripts/run_predict.sh
Executable file
9
scripts/run_predict.sh
Executable 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
|
||||
Reference in New Issue
Block a user