12 lines
498 B
Python
12 lines
498 B
Python
"""부트스트랩 데이터.
|
|
|
|
AI 예측은 시드하지 않는다 — 3모델 전부 워커가 실 API 로 생성(기동 시 1회 + 매일 00:05).
|
|
crowd(참여수/분포)도 더미 baseline 없이 0 에서 시작한다 — 실제 유저 제출로만 증분.
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
|
|
def generate_crowd(_match_id: str) -> dict:
|
|
"""초기 군중 = 0. 실제 유저 픽 제출로만 증가(순수 실데이터)."""
|
|
return {"total": 0, "teamAWin": 0, "draw": 0, "teamBWin": 0}
|