mirror of
https://github.com/NicolasBohn/NexQuant.git
synced 2026-07-28 16:07:46 +00:00
04141f0709
The LLM generates x.rolling(window=N, ddof=1).std() where ddof is passed to rolling() instead of std() — pandas raises TypeError on any ddof in rolling(). Fix both forms: rolling(..., ddof=N) and rolling(...).std(ddof=N). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>