video-benchmark / src /__init__.py
CarolinePascal
feat(gradio): update to gradio app
1fb78ac unverified
Raw
History Blame Contribute Delete
648 Bytes
"""Server-side data layer for the Video Benchmark Space.
``schema`` holds the canonical UI vocabulary (column metadata, option
lists, leaderboard categories, parameter group narration, About-page
prose) that the Gradio app in ``app.py`` reads directly to build its
controls and tabs. ``compute`` holds the pure-Python row math the app
calls from its event handlers: filtering, composite ranking, leaderboard
aggregation, and the three Compare-tab chart aggregations.
Both modules are framework-agnostic — they only know about ``list[dict]``
rows and the ``COLUMNS`` metadata, so they're trivial to import from a
notebook or a test harness.
"""