250 lines
10 KiB
TypeScript
250 lines
10 KiB
TypeScript
"use client";
|
|
|
|
import { useEffect, useState } from "react";
|
|
import { RefreshCcw } from "lucide-react";
|
|
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card";
|
|
import { Badge } from "@/components/ui/badge";
|
|
import { Button } from "@/components/ui/button";
|
|
import { opsApi } from "@/lib/ops-api";
|
|
import type { SystemStatusPayload } from "@/types/ops";
|
|
import Link from "next/link";
|
|
|
|
function StatRow({ label, value }: { label: string; value: React.ReactNode }) {
|
|
return (
|
|
<div className="flex justify-between py-1.5 border-b border-white/5 text-sm">
|
|
<span className="text-slate-400">{label}</span>
|
|
<span className="text-white font-medium">{value}</span>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
interface CityAccuracy {
|
|
city_id: string;
|
|
name: string;
|
|
deb?: {
|
|
hit_rate: number;
|
|
mae: number;
|
|
total_days: number;
|
|
details_str: string;
|
|
} | null;
|
|
mu?: {
|
|
mae: number;
|
|
hit_rate: number;
|
|
brier_score: number | null;
|
|
total_days: number;
|
|
details_str: string;
|
|
} | null;
|
|
}
|
|
|
|
export function TrainingPageClient() {
|
|
const [loading, setLoading] = useState(true);
|
|
const [status, setStatus] = useState<SystemStatusPayload | null>(null);
|
|
const [accuracy, setAccuracy] = useState<CityAccuracy[] | null>(null);
|
|
|
|
const load = async () => {
|
|
setLoading(true);
|
|
try {
|
|
const [s, accData] = await Promise.all([
|
|
opsApi.systemStatus() as Promise<SystemStatusPayload>,
|
|
opsApi.trainingAccuracy().catch(() => ({ accuracy: [] }))
|
|
]);
|
|
setStatus(s);
|
|
setAccuracy(accData.accuracy);
|
|
} catch { /* */ }
|
|
setLoading(false);
|
|
};
|
|
|
|
useEffect(() => { void load(); }, []);
|
|
|
|
if (loading) return <div className="text-slate-400 animate-pulse">加载中...</div>;
|
|
if (!status) return <div className="text-red-400">加载失败</div>;
|
|
|
|
const td = status.training_data;
|
|
const truth = td?.truth_records;
|
|
const features = td?.training_features;
|
|
const coverage = td?.city_coverage;
|
|
const modelCities = td?.model_cities;
|
|
|
|
return (
|
|
<div className="space-y-6">
|
|
<div className="flex items-center justify-between">
|
|
<h1 className="text-2xl font-bold text-white">训练数据</h1>
|
|
<Button variant="outline" size="sm" onClick={load} className="gap-1.5">
|
|
<RefreshCcw className="h-3.5 w-3.5" /> 刷新
|
|
</Button>
|
|
</div>
|
|
|
|
<div className="grid grid-cols-1 md:grid-cols-3 gap-6">
|
|
<Card>
|
|
<CardHeader><CardTitle>真值记录</CardTitle></CardHeader>
|
|
<CardContent className="space-y-1">
|
|
<StatRow label="行数" value={truth?.row_count ?? "—"} />
|
|
<StatRow label="城市数" value={truth?.cities_count ?? "—"} />
|
|
<StatRow label="日期范围" value={truth?.min_date && truth?.max_date ? `${truth.min_date} ~ ${truth.max_date}` : "—"} />
|
|
</CardContent>
|
|
</Card>
|
|
<Card>
|
|
<CardHeader><CardTitle>训练特征</CardTitle></CardHeader>
|
|
<CardContent className="space-y-1">
|
|
<StatRow label="行数" value={features?.row_count ?? "—"} />
|
|
<StatRow label="城市数" value={features?.cities_count ?? "—"} />
|
|
<StatRow label="日期范围" value={features?.min_date && features?.max_date ? `${features.min_date} ~ ${features.max_date}` : "—"} />
|
|
</CardContent>
|
|
</Card>
|
|
<Card>
|
|
<CardHeader><CardTitle>城市覆盖</CardTitle></CardHeader>
|
|
<CardContent className="space-y-1">
|
|
<StatRow label="城市总数" value={coverage?.total_cities ?? "—"} />
|
|
<StatRow label="有真值" value={coverage?.with_truth_rows ?? "—"} />
|
|
<StatRow label="有特征" value={coverage?.with_feature_rows ?? "—"} />
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
|
|
{modelCities ? (
|
|
<div className="grid grid-cols-1 md:grid-cols-2 gap-6">
|
|
<Card>
|
|
<CardHeader><CardTitle>最强城市</CardTitle></CardHeader>
|
|
<CardContent>
|
|
{modelCities.strongest?.length ? (
|
|
<ul className="space-y-1">
|
|
{modelCities.strongest.map((c, i) => (
|
|
<li key={i} className="text-sm text-slate-300">
|
|
<span className="text-white font-medium">{c.city}</span>
|
|
<span className="text-slate-500 ml-3">真值:{c.truth_rows ?? "—"} 特征:{c.feature_rows ?? "—"}</span>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
) : <span className="text-slate-500 text-sm">无数据</span>}
|
|
</CardContent>
|
|
</Card>
|
|
<Card>
|
|
<CardHeader><CardTitle>覆盖缺口</CardTitle></CardHeader>
|
|
<CardContent>
|
|
{modelCities.gaps?.length ? (
|
|
<div className="flex flex-wrap gap-1.5">
|
|
{modelCities.gaps.map((c) => (
|
|
<Badge key={c} variant="secondary">{c}</Badge>
|
|
))}
|
|
</div>
|
|
) : <span className="text-slate-500 text-sm">无缺口</span>}
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
) : null}
|
|
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>模型融合与预测准确率效果 (DEB & 概率引擎)</CardTitle>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<div className="overflow-x-auto">
|
|
<table className="w-full text-sm text-left text-slate-300">
|
|
<thead className="text-xs uppercase bg-slate-800/50 text-slate-400">
|
|
<tr>
|
|
<th scope="col" className="px-4 py-3">城市</th>
|
|
<th scope="col" className="px-4 py-3 text-center">DEB 结算命中</th>
|
|
<th scope="col" className="px-4 py-3 text-center">DEB MAE</th>
|
|
<th scope="col" className="px-4 py-3 text-center">DEB 天数</th>
|
|
<th scope="col" className="px-4 py-3 text-center">概率 μ 结算命中</th>
|
|
<th scope="col" className="px-4 py-3 text-center">概率 μ MAE</th>
|
|
<th scope="col" className="px-4 py-3 text-center">Brier Score</th>
|
|
<th scope="col" className="px-4 py-3 text-center">概率天数</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody className="divide-y divide-white/5">
|
|
{accuracy && accuracy.length > 0 ? (
|
|
accuracy.map((row) => (
|
|
<tr key={row.city_id} className="hover:bg-white/5 transition-colors">
|
|
<td className="px-4 py-3 font-medium text-white capitalize">
|
|
{row.name}
|
|
<span className="text-xs text-slate-500 block font-mono">{row.city_id}</span>
|
|
</td>
|
|
<td className="px-4 py-3 text-center">
|
|
{row.deb ? (
|
|
<span className={`px-2 py-0.5 rounded-full text-xs font-semibold ${
|
|
row.deb.hit_rate >= 80
|
|
? "bg-green-500/15 text-green-400"
|
|
: row.deb.hit_rate >= 60
|
|
? "bg-yellow-500/15 text-yellow-400"
|
|
: "bg-red-500/15 text-red-400"
|
|
}`}>
|
|
{row.deb.hit_rate.toFixed(0)}%
|
|
</span>
|
|
) : (
|
|
<span className="text-slate-600">—</span>
|
|
)}
|
|
</td>
|
|
<td className="px-4 py-3 text-center font-mono">
|
|
{row.deb ? `${row.deb.mae.toFixed(1)}°` : "—"}
|
|
</td>
|
|
<td className="px-4 py-3 text-center text-slate-400">
|
|
{row.deb ? row.deb.total_days : "—"}
|
|
</td>
|
|
<td className="px-4 py-3 text-center">
|
|
{row.mu ? (
|
|
<span className={`px-2 py-0.5 rounded-full text-xs font-semibold ${
|
|
row.mu.hit_rate >= 80
|
|
? "bg-green-500/15 text-green-400"
|
|
: row.mu.hit_rate >= 60
|
|
? "bg-yellow-500/15 text-yellow-400"
|
|
: "bg-red-500/15 text-red-400"
|
|
}`}>
|
|
{row.mu.hit_rate.toFixed(0)}%
|
|
</span>
|
|
) : (
|
|
<span className="text-slate-600">—</span>
|
|
)}
|
|
</td>
|
|
<td className="px-4 py-3 text-center font-mono">
|
|
{row.mu ? `${row.mu.mae.toFixed(1)}°` : "—"}
|
|
</td>
|
|
<td className="px-4 py-3 text-center font-mono">
|
|
{row.mu && row.mu.brier_score !== null ? (
|
|
<span className={`${
|
|
row.mu.brier_score <= 0.1
|
|
? "text-green-400 font-bold"
|
|
: row.mu.brier_score <= 0.25
|
|
? "text-yellow-400"
|
|
: "text-red-400"
|
|
}`}>
|
|
{row.mu.brier_score.toFixed(3)}
|
|
</span>
|
|
) : (
|
|
"—"
|
|
)}
|
|
</td>
|
|
<td className="px-4 py-3 text-center text-slate-400">
|
|
{row.mu ? row.mu.total_days : "—"}
|
|
</td>
|
|
</tr>
|
|
))
|
|
) : (
|
|
<tr>
|
|
<td colSpan={8} className="px-4 py-8 text-center text-slate-500">
|
|
无有效准确率记录,请确认 daily_records.json 中已有历史结算数据。
|
|
</td>
|
|
</tr>
|
|
)}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</CardContent>
|
|
</Card>
|
|
|
|
<Card>
|
|
<CardHeader>
|
|
<CardTitle>真值历史浏览</CardTitle>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<p className="text-sm text-slate-400 mb-3">按城市和日期筛选查看历史真值记录。</p>
|
|
<Link href="/ops/truth-history" className="inline-flex items-center gap-1.5 rounded-lg bg-cyan-500/15 px-3 py-2 text-xs font-bold text-cyan-200 hover:bg-cyan-500/25 transition-colors">
|
|
打开真值历史 →
|
|
</Link>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
);
|
|
}
|
|
|