Spaces:
Sleeping
Sleeping
File size: 15,358 Bytes
c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c 5fccbac c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 c9c417c a2f5871 5fccbac a2f5871 c9c417c eb84c1f a2f5871 5fccbac a2f5871 eb84c1f a2f5871 c9c417c a2f5871 5fccbac a2f5871 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 | """Roulette next-spin prediction API — runs every persisted model and returns
per-model predictions plus a majority-vote consensus for each target.
Endpoints
---------
GET / Service info + models loaded
POST /predict Predict next N spins from JSON {"numbers": [...], "steps": N}
POST /predict/file Predict next N spins from an uploaded CSV (column Winner/number)
Each step's response contains, for every target (number, color, parity, dozen,
column): the consensus (mode across models) and each model's individual
prediction.
"""
from __future__ import annotations
import io
import logging
from collections import Counter
from pathlib import Path
from typing import Any
import joblib
import numpy as np
import pandas as pd
from fastapi import FastAPI, File, HTTPException, UploadFile
from fastapi.middleware.cors import CORSMiddleware
from pydantic import BaseModel, Field, field_validator
from ml.features import (
WINDOW,
_features_from_window,
derive_color,
derive_column,
derive_dozen,
derive_parity,
)
from ml.features_v2 import WINDOW_V2, _features_v2
logging.basicConfig(level=logging.INFO, format="%(asctime)s [%(levelname)s] %(message)s")
LOG = logging.getLogger("app")
APP_ROOT = Path(__file__).resolve().parent
MODELS_DIR = APP_ROOT / "models"
# ---------------------------------------------------------------------------
# Label tables
# ---------------------------------------------------------------------------
COLOR_LABELS = ("red", "black", "green")
PARITY_LABELS = ("odd", "even", "none")
DOZEN_LABELS = ("first", "second", "third", "none")
COLUMN_LABELS = ("first", "second", "third", "none")
TARGET_LABELS: dict[str, tuple[str, ...]] = {
"color": COLOR_LABELS,
"parity": PARITY_LABELS,
"dozen": DOZEN_LABELS,
"column": COLUMN_LABELS,
}
TARGETS = ("number", "color", "parity", "dozen", "column")
def _looks_like_html_document(content: bytes) -> bool:
sample = content[:512].lstrip().lower()
return sample.startswith((b"<!doctype html", b"<html", b"<?xml")) or b"<html" in sample
def _read_uploaded_dataframe(content: bytes) -> pd.DataFrame:
if not content.strip():
raise HTTPException(status_code=400, detail="uploaded file is empty")
try:
return pd.read_csv(io.BytesIO(content))
except Exception:
pass
excel_read_error = None
for engine in ("openpyxl", "xlrd"):
try:
return pd.read_excel(io.BytesIO(content), engine=engine)
except Exception as exc_excel:
excel_read_error = exc_excel
if _looks_like_html_document(content):
try:
tables = pd.read_html(io.BytesIO(content))
except Exception as exc_html:
raise HTTPException(
status_code=400,
detail=(
"uploaded file appears to be HTML rather than CSV/Excel, "
f"and no HTML table could be parsed: {exc_html}"
),
) from exc_html
non_empty_tables = [table for table in tables if not table.empty]
if non_empty_tables:
return max(non_empty_tables, key=lambda table: table.shape[0])
if tables:
return tables[0]
raise HTTPException(status_code=400, detail="uploaded HTML file does not contain any tables")
raise HTTPException(
status_code=400,
detail=f"could not read file as CSV, Excel, or HTML table: {excel_read_error}"
) from excel_read_error
# ---------------------------------------------------------------------------
# Model registry — filled at startup
# ---------------------------------------------------------------------------
# Each entry: (model_name, predictor_callable(window_v1, window_v2) -> int label)
ModelEntry = tuple[str, Any]
REGISTRY: dict[str, list[ModelEntry]] = {t: [] for t in TARGETS}
# --- wrappers: each returns the class index (int) ---
def _wrap_sklearn_v1(bundle: dict) -> Any:
model = bundle["model"]
scaler = bundle.get("scaler")
def predict(w_v1: np.ndarray, w_v2: np.ndarray) -> int:
feats = _features_from_window(w_v1).reshape(1, -1)
if scaler is not None:
feats = scaler.transform(feats)
return int(model.predict(feats)[0])
return predict
def _wrap_sklearn_v2(bundle: dict) -> Any:
model = bundle["model"]
scaler = bundle.get("scaler")
def predict(w_v1: np.ndarray, w_v2: np.ndarray) -> int:
feats = _features_v2(w_v2).reshape(1, -1)
if scaler is not None:
feats = scaler.transform(feats)
return int(model.predict(feats)[0])
return predict
def _wrap_markov(order: int, model: Any) -> Any:
def predict(w_v1: np.ndarray, w_v2: np.ndarray) -> int:
ctx = tuple(int(x) for x in w_v1[-order:])
return int(model.predict(ctx))
return predict
def _wrap_torch(model: Any) -> Any:
import torch
model.eval()
def predict(w_v1: np.ndarray, w_v2: np.ndarray) -> int:
x = torch.from_numpy(w_v1.astype(np.int64)).unsqueeze(0)
with torch.no_grad():
logits = model(x)
return int(logits.argmax(dim=-1).item())
return predict
def _load_torch_model(path: Path, name: str) -> Any:
import torch
# Lazy import to avoid torch at app import time if not available.
from ml_torch import GRUClassifier, LSTMClassifier, TransformerClassifier
cls = {"lstm": LSTMClassifier, "gru": GRUClassifier, "transformer": TransformerClassifier}[name]
ckpt = torch.load(path, map_location="cpu", weights_only=True)
model = cls()
model.load_state_dict(ckpt["state_dict"])
return model
# ---------------------------------------------------------------------------
# Registry construction
# ---------------------------------------------------------------------------
V1_MODELS = [
"logreg",
"hist_gradient_boosting",
"mlp",
"xgboost",
"lightgbm",
]
V2_MODELS = [
"catboost",
"knn",
"gaussian_nb",
"ridge",
"sgd",
]
def _register(target: str, name: str, predictor: Any) -> None:
REGISTRY[target].append((name, predictor))
def load_all_models() -> None:
# V1 sklearn (window=10)
for kind in V1_MODELS:
for target in TARGETS:
path = MODELS_DIR / f"{kind}__{target}.joblib"
if not path.exists():
continue
try:
bundle = joblib.load(path)
_register(target, kind, _wrap_sklearn_v1(bundle))
LOG.info("loaded v1/%s for %s", kind, target)
except Exception as exc:
LOG.warning("v1/%s/%s failed to load: %s", kind, target, exc)
# V2 sklearn (window=20)
for kind in V2_MODELS:
for target in TARGETS:
path = MODELS_DIR / f"{kind}__{target}.v2.joblib"
if not path.exists():
continue
try:
bundle = joblib.load(path)
_register(target, kind, _wrap_sklearn_v2(bundle))
LOG.info("loaded v2/%s for %s", kind, target)
except Exception as exc:
LOG.warning("v2/%s/%s failed to load: %s", kind, target, exc)
# SVC (v2 features, only saved for color/column)
for target in ("color", "column"):
path = MODELS_DIR / f"svc__{target}.v2.joblib"
if not path.exists():
continue
try:
bundle = joblib.load(path)
_register(target, "svc", _wrap_sklearn_v2(bundle))
LOG.info("loaded svc for %s", target)
except Exception as exc:
LOG.warning("svc/%s failed to load: %s", target, exc)
# Markov chains — predict number; derive others
for order in (1, 2, 3):
path = MODELS_DIR / f"markov_order{order}.joblib"
if not path.exists():
continue
try:
markov = joblib.load(path)
_register("number", f"markov_order{order}", _wrap_markov(order, markov))
LOG.info("loaded markov_order%d for number", order)
except Exception as exc:
LOG.warning("markov_order%d failed to load: %s", order, exc)
# Torch deep models — predict number only
for name in ("lstm", "gru", "transformer"):
path = MODELS_DIR / f"{name}__number.pt"
if not path.exists():
continue
try:
model = _load_torch_model(path, name)
_register("number", name, _wrap_torch(model))
LOG.info("loaded torch/%s for number", name)
except Exception as exc:
LOG.warning("torch/%s failed to load: %s", name, exc)
# ---------------------------------------------------------------------------
# Aggregation
# ---------------------------------------------------------------------------
def _consensus_index(preds: list[int], n_classes: int) -> int:
if not preds:
return 0
counter = Counter(preds)
max_count = max(counter.values())
# Tie-break: lowest index among those with max votes.
for k in range(n_classes):
if counter.get(k, 0) == max_count:
return k
return preds[0]
def _predict_target_all(target: str, w_v1: np.ndarray, w_v2: np.ndarray) -> tuple[dict[str, Any], int]:
"""Return ({model_name: label_str_or_int}, consensus_index)."""
entries = REGISTRY[target]
raw: list[int] = []
per_model: dict[str, Any] = {}
labels = TARGET_LABELS.get(target)
for name, predictor in entries:
try:
idx = predictor(w_v1, w_v2)
except Exception as exc:
LOG.warning("%s/%s predict failed: %s", name, target, exc)
continue
idx = int(idx)
raw.append(idx)
if target == "number":
per_model[name] = idx
else:
per_model[name] = labels[idx] if labels and 0 <= idx < len(labels) else str(idx)
# For number, also fold in derived-from-consensus not applicable; just use mode.
n_classes = 37 if target == "number" else len(labels or (0,))
consensus = _consensus_index(raw, n_classes)
return per_model, consensus
# ---------------------------------------------------------------------------
# API
# ---------------------------------------------------------------------------
app = FastAPI(
title="Roulette Next-Spin Predictor (all models)",
description=(
"Predicts the next N spins of a European single-zero roulette wheel. "
"Every persisted model votes on every target (number, color, parity, "
"dozen, column). Response returns each model's prediction plus a "
"majority-vote consensus."
),
version="2.0.0",
)
app.add_middleware(CORSMiddleware, allow_origins=["*"], allow_methods=["*"], allow_headers=["*"])
@app.on_event("startup")
def _startup() -> None:
load_all_models()
summary = {t: len(REGISTRY[t]) for t in TARGETS}
LOG.info("Models loaded per target: %s", summary)
class PredictRequest(BaseModel):
numbers: list[int] = Field(..., description="Past winning numbers (0–36), most recent last.")
steps: int = Field(10, ge=1, le=50)
@field_validator("numbers")
@classmethod
def _check(cls, v: list[int]) -> list[int]:
if not v:
raise ValueError("numbers cannot be empty")
if any(n < 0 or n > 36 for n in v):
raise ValueError("all numbers must be in [0, 36]")
return v
class TargetBlock(BaseModel):
consensus: Any
by_model: dict[str, Any]
class StepPrediction(BaseModel):
step: int
number: TargetBlock
color: TargetBlock
parity: TargetBlock
dozen: TargetBlock
column: TargetBlock
class PredictResponse(BaseModel):
predictions: list[StepPrediction]
def _prepare_windows(sequence: list[int]) -> tuple[np.ndarray, np.ndarray]:
arr = np.asarray(sequence, dtype=np.int64)
if len(arr) < WINDOW_V2:
pad = np.zeros(WINDOW_V2 - len(arr), dtype=np.int64)
arr = np.concatenate([pad, arr])
return arr[-WINDOW:].copy(), arr[-WINDOW_V2:].copy()
def _forecast(sequence: list[int], steps: int) -> list[StepPrediction]:
w_v1, w_v2 = _prepare_windows(sequence)
out: list[StepPrediction] = []
for step in range(1, steps + 1):
blocks: dict[str, TargetBlock] = {}
consensus_number: int | None = None
for target in TARGETS:
per_model, cons_idx = _predict_target_all(target, w_v1, w_v2)
if target == "number":
consensus_value: Any = cons_idx
consensus_number = cons_idx
else:
labels = TARGET_LABELS[target]
consensus_value = labels[cons_idx] if 0 <= cons_idx < len(labels) else str(cons_idx)
blocks[target] = TargetBlock(consensus=consensus_value, by_model=per_model)
out.append(StepPrediction(step=step, **blocks))
# Roll window forward using the consensus number.
next_num = consensus_number if consensus_number is not None else int(w_v1[-1])
w_v1 = np.append(w_v1[1:], next_num)
w_v2 = np.append(w_v2[1:], next_num)
return out
@app.get("/")
def root() -> dict[str, Any]:
return {
"service": "Roulette Next-Spin Predictor (all models)",
"version": "2.0.0",
"wheel": "European single-zero (0–36)",
"endpoints": {
"POST /predict": "Predict from JSON {numbers: [...], steps: N}",
"POST /predict/file": "Predict from uploaded CSV (column Winner/number)",
"GET /docs": "Swagger UI",
},
"models_per_target": {t: len(REGISTRY[t]) for t in TARGETS},
"model_names_per_target": {t: [n for n, _ in REGISTRY[t]] for t in TARGETS},
}
@app.post("/predict", response_model=PredictResponse)
def predict(req: PredictRequest) -> PredictResponse:
if not any(REGISTRY[t] for t in TARGETS):
raise HTTPException(status_code=503, detail="no models loaded")
preds = _forecast(req.numbers, req.steps)
return PredictResponse(predictions=preds)
@app.post("/predict/file", response_model=PredictResponse)
async def predict_file(file: UploadFile = File(...), steps: int = 10) -> PredictResponse:
if not any(REGISTRY[t] for t in TARGETS):
raise HTTPException(status_code=503, detail="no models loaded")
if steps < 1 or steps > 50:
raise HTTPException(status_code=400, detail="steps must be between 1 and 50")
try:
content = await file.read()
df = _read_uploaded_dataframe(content)
except HTTPException:
raise
except Exception as exc:
raise HTTPException(status_code=400, detail=f"could not read file: {exc}") from exc
col = next(
(c for c in df.columns if c.lower() in {"winner", "winning number", "number"}),
df.columns[-1],
)
try:
numbers = [int(x) for x in df[col].tolist()]
except Exception as exc:
raise HTTPException(status_code=400, detail=f"column {col!r} is not integer-coercible: {exc}") from exc
if any(n < 0 or n > 36 for n in numbers):
raise HTTPException(status_code=400, detail="values must be in [0, 36]")
preds = _forecast(numbers, steps)
return PredictResponse(predictions=preds)
if __name__ == "__main__":
import uvicorn
uvicorn.run("app:app", host="0.0.0.0", port=7860, reload=False)
|