SShortSingh.
Back to feed

Developer Builds 227,000-Match Football Odds Analysis Pipeline Using LLM Architecture

0
·15 views

A developer spent six months building an open-source football data analysis pipeline called PitchQuant, processing over 227,000 historical matches to study what signals exist within betting odds. The system combines de-vigging, ELO ratings, Dixon-Coles Poisson modelling, and Kelly criterion calculations, with an LLM coordinating a strict multi-step inference process governed by 34 knowledge files and 238 automated checks. By combining individually weak statistical signals with calibrated weighting and rigorous backtesting, the pipeline improved directional accuracy from 48% to roughly 55%. Key findings include that Asian handicap movement is a stronger indicator than European odds alone, and that low-odds favourites with shallow handicap shifts win far less often than assumed. The project, released under an MIT licence on GitHub, is intended solely for academic research and explicitly does not claim to predict match outcomes.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Developer releases open-source local AI proxy daemon with zero telemetry or cloud dependency

A developer has open-sourced the Garza Global Graviton (GGG) Sovereign Edge Daemon, a self-contained background tool designed to give users full control over their local AI data. The daemon runs as an OpenAI-compatible loopback proxy at a local address, meaning all prompts, history, and context remain entirely on the user's own hardware. It includes HMAC-SHA256 cryptographic response branding and a metadata pacer to maintain data integrity under what the developer calls a Sovereign Math Framework. GGG is compatible with popular AI tools such as VS Code's Continue extension, Open WebUI, LM Studio, and Jan, and requires no accounts or cloud connections. The project is publicly available on GitHub, and the developer is inviting community feedback and contributions.

0
ProgrammingDEV Community ·

Recent School Grad Builds Python Restaurant Bot as First Coding Project

Dilesh Zingare, a recent 12th-grade graduate, has shared his first Python project and first written article on DEV Community. The project, called 'Soul the Restro Waiter,' is a command-line restaurant simulation that handles menu display, order taking, quantity input, and bill generation. Zingare discovered the platform through online research and decided to document his early coding journey as a step toward becoming a Developer Advocate. He acknowledged his beginner status and openly invited feedback from readers to help him improve. The project marks the start of his self-taught programming path despite a disappointing exam result that initially shook his confidence.

0
ProgrammingDEV Community ·

Oracle PL/SQL Exception Handling: Types, Rules, and Code Examples Explained

Oracle PL/SQL exceptions are runtime error conditions that interrupt normal block execution and transfer control to a designated EXCEPTION section for handling. PL/SQL classifies exceptions into three types: predefined Oracle server errors (such as NO_DATA_FOUND and ZERO_DIVIDE), non-predefined server errors that require manual declaration and binding via PRAGMA EXCEPTION_INIT, and user-defined exceptions raised explicitly by developers for custom business logic. Only one exception handler executes per block run, and the WHEN OTHERS clause, if used, must always appear last in the EXCEPTION section. Non-predefined exceptions are linked to specific ORA- error codes at compile time using the PRAGMA compiler directive in the DECLARE section. Understanding these categories and their declaration requirements helps developers write more robust and maintainable PL/SQL code.

0
ProgrammingDEV Community ·

How to Write Structured Prompts for MiniMax H3 AI Video Generation

A practical guide published on DEV Community outlines a structured approach to writing prompts for MiniMax H3, an AI video generation model. The guide argues that effective prompts should function like production specifications, covering subject, action, camera movement, lighting, timing, and audio in separate, purposeful sentences. A key recommendation is to describe motion as a timeline, breaking a clip into timestamped segments to convey what happens between frames rather than just the final image. The guide also advises separating subject motion from camera motion to avoid conflicting instructions, and using precise cinematographic terms such as 'slow dolly-in' instead of vague phrases like 'cinematic camera movement'. These techniques are presented as ways to make AI video prompts easier to debug, reuse, and control across use cases like product reveals, fashion shots, and vehicle videos.