From 4beb38e62b3f7360a669e41f7530b7bb98195374 Mon Sep 17 00:00:00 2001 From: happybell80 Date: Wed, 17 Dec 2025 19:03:50 +0900 Subject: [PATCH] =?UTF-8?q?docs:=20=EB=82=A0=EC=A7=9C=20=EC=88=98=EC=A0=95?= =?UTF-8?q?=20(2025-12-23=20=E2=86=92=202025-12-17)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- journey/plans/251223_bayesian_seminar_presentation_plan.md | 4 ++-- .../251216_bayesian_presentation_ballquiz_redesign.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/journey/plans/251223_bayesian_seminar_presentation_plan.md b/journey/plans/251223_bayesian_seminar_presentation_plan.md index 95f8356..adf2e8a 100644 --- a/journey/plans/251223_bayesian_seminar_presentation_plan.md +++ b/journey/plans/251223_bayesian_seminar_presentation_plan.md @@ -1,6 +1,6 @@ # 베이지안 세미나 발표 계획 -**작성일**: 2025-12-23 +**작성일**: 2025-12-17 **발표자**: 김종태 **참가자**: 강일신, 곽서현, 김하영, 홍태주, 문유리, 문정현, 김종태 (7명) **발표 시간**: 30분 @@ -77,7 +77,7 @@ - 백엔드: FastAPI - 엔드포인트: 참가자 등록, 공 꺼내기, IR 정보 업데이트, 결과 조회 -## 구현 완료 (2025-12-23) +## 구현 완료 (2025-12-17) ### BallQuiz 페이지 베이지안 업데이트 로직 - **누적 odds 변환**: 각 회차마다 입력한 확률(%)을 odds로 변환하여 이전 alpha, beta에 누적 diff --git a/journey/troubleshooting/251216_bayesian_presentation_ballquiz_redesign.md b/journey/troubleshooting/251216_bayesian_presentation_ballquiz_redesign.md index 6140159..66f00d7 100644 --- a/journey/troubleshooting/251216_bayesian_presentation_ballquiz_redesign.md +++ b/journey/troubleshooting/251216_bayesian_presentation_ballquiz_redesign.md @@ -33,7 +33,7 @@ - **입력 중 덮어쓰기**: 입력 중 서버 `state_update`가 오면 아직 저장되지 않은 입력값이 사라짐 - **리셋 버튼 미작동**: 리셋 후에도 테이블의 입력값이 그대로 남아있어 초기화되지 않음 -### 6. 베이지안 업데이트 로직 문제 (2025-12-23 추가) +### 6. 베이지안 업데이트 로직 문제 (2025-12-17 추가) - **독립적 확률 변환**: 각 회차마다 확률(%)을 독립적으로 베타분포로 변환하여 이전 회차 정보가 누적되지 않음 - **그래프 색상 구분 부족**: 초기와 회차별 그래프 색상이 동일하여 변화 추이 파악 어려움 - **피크 값 미표시**: 5회차까지 입력 완료 후 최종 확률 추정값(피크)이 표시되지 않음 @@ -70,7 +70,7 @@ - **자동 저장**: `BallQuizPage.tsx:94-120` - `useEffect` + debounce(300ms)로 입력값 자동 저장 - **리셋 시 로컬 상태 초기화**: `BallQuizPage.tsx:26-29` - `estimates`가 빈 객체일 때 `participantInputs`도 빈 객체로 초기화 -### 베이지안 업데이트 로직 개선 (2025-12-23) +### 베이지안 업데이트 로직 개선 (2025-12-17) - **누적 odds 변환**: 각 회차마다 입력한 확률(%)을 odds로 변환하여 이전 alpha, beta에 누적 - 예: 초기 50% → alpha=1, beta=1 → 1회차 60% → alpha=2.5, beta=2 → 2회차 65% → alpha=4.36, beta=3 - 5회차까지 진행 시 alpha + beta > 10 @@ -94,7 +94,7 @@ - 입력 중 서버 업데이트로 덮어쓰기 방지 - 자동 저장으로 입력값 유실 방지 - 리셋 버튼 정상 작동 -- 베이지안 업데이트 로직 개선 완료 (2025-12-23) +- 베이지안 업데이트 로직 개선 완료 (2025-12-17) - 누적 odds 변환으로 이전 회차 정보 누적 - 그래프 색상 점진적 변화 (연보라 → 진한 보라) - 5회차 피크 값 표시 (그래프 하단)