analysis visualize:#/118 - #123
Open
Flowba104 wants to merge 1 commit into
Open
Conversation
hc-10103
approved these changes
Jul 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📌 변경내용
algorithm/simulator/simulator.py
DEFAULT_WEIGHTS ← 지금 테스트할 weight 값을 여기서 관리
run_single() ← weight 하나로 N게임 재현 가능하게 돌리는 함수
algorithm/scripts/
comparison_test.py ← 메인 실행 스크립트. 시뮬레이션 돌리고 결과 저장
generate_dashboard.py ← 결과 JSON을 그래프 있는 HTML로 변환
diff_features.py ← comparison_test.py가 실행할 때마다 자동으로 호출 (내부용)
check_changes.py ← 저장된 JSON 두 개를 손으로 비교하고 싶을 때 (수동용)
사용법 python algorithm/scripts/comparison_test.py --n-games 20 --output-dir results
🔗 관련 이슈
DEFAULT_OUTPUT_DIR이 특정 개인의 구글 드라이브 경로로 고정된 채 커밋되어 있음(
algorithm/scripts/comparison_test.py상단, 예:G:\내 드라이브\DoSay_results).이 경로는 그 컴퓨터에서만 존재하므로, 다른 사람이 별도 옵션 없이 그냥 실행하면
FileNotFoundError또는 엉뚱한 경로에 저장 시도하다 실패할 수 있음.다른 컴퓨터에서 실행할 땐 반드시
--output-dir로 자기 저장 위치를 지정할 것: