Why: v1(능동 시그널) + v2(자율 가중치 학습) + v2.1(활동 가시화)로 시스템이 진화한 것을 반영. 기존 '시뮬레이션 추천 시스템' 3 bullet → '자율 학습 시뮬레이션' 4 bullet (학습 루프·시그널·시뮬·AI 큐레이터).
38 lines
1.5 KiB
JavaScript
38 lines
1.5 KiB
JavaScript
import React from 'react';
|
||
import { useLocation } from 'react-router-dom';
|
||
import Functions from './Functions';
|
||
import './Lotto.css';
|
||
|
||
const Lotto = () => {
|
||
const location = useLocation();
|
||
const initialTab = location.pathname.endsWith('/evolver') ? 'evolver' : 'briefing';
|
||
|
||
return (
|
||
<div className="lotto">
|
||
<header className="lotto-header">
|
||
<div>
|
||
<p className="lotto-kicker">Playground</p>
|
||
<h1>Lotto Lab</h1>
|
||
<p className="lotto-sub">
|
||
로또 추천 및 기록 관리 도구입니다. 다양한 알고리즘을 통해 번호를 추천받고,
|
||
추첨 기록을 손쉽게 관리할 수 있습니다.
|
||
</p>
|
||
</div>
|
||
<div className="lotto-card">
|
||
<p className="lotto-card__title">자율 학습 시뮬레이션</p>
|
||
<ul>
|
||
<li>매주 6가지 가중치 시도 → 토요일 회고로 best base 학습</li>
|
||
<li>능동 시그널 모니터링 (Sim·Drift·Confidence z-score) + 텔레그램 알림</li>
|
||
<li>4시간마다 몬테카를로 20,000 후보 × 5종 점수 가중 평가</li>
|
||
<li>AI 큐레이터 + 핫·콜드·오버듀 통계 분석</li>
|
||
</ul>
|
||
</div>
|
||
</header>
|
||
|
||
<Functions initialTab={initialTab} />
|
||
</div>
|
||
);
|
||
};
|
||
|
||
export default Lotto;
|