From b01f8943fe0aac3e6d14d33a6f196880db65e6c1 Mon Sep 17 00:00:00 2001 From: kenobijon Date: Fri, 24 Jul 2026 15:10:55 -0500 Subject: [PATCH] Rebalance video challenge tier mix to 480p 40 / 720p 40 / 1080p 20 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1080p was over-requested at 40%: it is the most expensive tier for miners (4-5x the cost of 480p per clip) while verification and detection operate at modest input resolutions, so extra 1080p share is the priciest way to grow the dataset. Shift that weight to 480p — the cheapest data and the documented weak spot of detectors (compression destroys generator artifacts). Expected miner cost per Seedance-full challenge drops from ~$1.86 to ~$1.48. --- gas/evaluation/resolution_tiers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gas/evaluation/resolution_tiers.py b/gas/evaluation/resolution_tiers.py index 98cde6dc..8f806fa3 100644 --- a/gas/evaluation/resolution_tiers.py +++ b/gas/evaluation/resolution_tiers.py @@ -39,9 +39,9 @@ # probed (top tiers are the most expensive for miners to serve). CHALLENGE_TIER_WEIGHTS: Dict[str, Dict[str, float]] = { VIDEO_MODALITY: { - "480p": 0.20, + "480p": 0.40, "720p": 0.40, - "1080p": 0.40, + "1080p": 0.20, }, IMAGE_MODALITY: { "1K": 0.40,