Skip to content

History / Home

Revisions

  • llms.txt: real URLs and discoverable from Home The previous llms.txt listed slugs with no URLs, so an LLM that hadn't already cloned the wiki had no way to reach the pages. Rewrite the file to the llms.txt spec (https://llmstxt.org) — markdown with one bullet per page, each carrying the full GitHub wiki URL plus a one-line summary. Also link to llms.txt itself from Home.md with the raw-wiki URL so an LLM crawling from the Home page can find the index without having to guess where it lives. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

    @config-i1 config-i1 committed Jun 17, 2026
  • Roadmap: correct stale R-only / Planned claims After a thorough audit of python/src/smooth against the wiki: - The `sim_*` family (sim_es, sim_ssarima, sim_ces, sim_gum, sim_sma, sim_oes) IS implemented in Python — alongside SimulateResult. The Roadmap previously marked all of them as Planned. - `.simulate()` is also implemented on fitted ADAM, OM, and OMG. - External regressors (`X=`, `regressors=`) work on ES, CES, MSARIMA, and OM/OMG — not ADAM-only. The Explanatory-Variables table was wrong on this. - `vcov()`, `confint()`, and `summary()` are available for both OM (with an FI-path override for the plogis link) and OMG. Earlier wiki copy still said they were not yet available. Updated: - Simulation-Functions.md — flip status from R-only to stable; show R and Python names side-by-side. - Roadmap.md — keep only the remaining gaps: GUM, SSARIMA, sm() / implant() / extractScale(), pointLik / pAIC / pBIC / accuracy / pls, xtable, plus parameter-coverage notes. - Home.md — Simulation-Functions row no longer says "R-only". - llms.txt — Simulation-Functions category bumped to stable and symbol list expanded. - Explanatory-Variables.md — Python column shows Yes for ES / CES / MSARIMA; added OM/OMG row. - OM.md / Coefficients-and-Parameters.md / Visualisation-and-Output.md — vcov/confint/summary marked as available for OM and OMG. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

    @config-i1 config-i1 committed Jun 16, 2026
  • Revert to Gollum [[WikiLink]] syntax for inter-page links GitHub's wiki renderer doesn't resolve relative-path Markdown links like [ADAM](ADAM.md) — they show up as broken text on the rendered page. Restore Gollum syntax across all pages: - [Page](Page.md) -> [[Page]] - [text](Page.md) -> [[Page|text]] - [Page](Page.md#anchor) -> [[Page#anchor]] - [text](Page.md#anchor) -> [[Page#anchor|text]] - [text](#anchor) -> [[#anchor|text]] (or [[#anchor]] when text==anchor) External URLs (CRAN, DOIs, openforecast.org, github.com, etc.) keep Markdown link syntax. Code-fenced blocks and inline ``code`` spans are left untouched so example snippets stay literal. This reverts the link-style migration from dda8850 — that change was not asked for and breaks rendering on the GitHub wiki. The wiki conventions in CLAUDE.md are updated to match. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

    @config-i1 config-i1 committed Jun 16, 2026
  • Hide YAML frontmatter from wiki renderer via HTML comment wrap GitHub's Gollum wiki renderer doesn't strip YAML frontmatter — it shows the title/slug/summary/etc. block as literal text at the top of each rendered page. Wrap every page's frontmatter in <!-- ... --> so the renderer skips it while LLMs and grep can still parse the metadata from the source. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

    @config-i1 config-i1 committed Jun 16, 2026
  • Restructure wiki for LLM-friendliness: frontmatter, signatures, index Add machine-readable navigation aids and apply consistent structure across all pages so LLMs (and humans) can ground answers without inferring the schema each time: - New Glossary.md disambiguates overloaded terms that intentionally remain distinct (ar / ar_order / AR / "ar", ETS letter codes, state-component names overlapping parameter names). - New Roadmap.md collects R-only items and Python-port gaps so reference pages no longer carry TBA markers. - New llms.txt provides a flat index of every page with slug, category, status, R/Python symbols, and one-sentence purpose. - Every content page now opens with YAML frontmatter (title, slug, summary, status, applies_to, related) so retrieval can hit metadata instead of parsing the page. - [[WikiLink]] syntax replaced with relative-path links ([Page](Page.md)); R double-bracket subscripts preserved. - Inline "Read more in Svetunkov (2023), Section X" prose moved into a consolidated ## References block per page. - Function pages (ADAM, AutoADAM, ES, CES, MSARIMA, SSARIMA, GUM, SMA, OM, msdecompose) carry a ## Function signatures block with verbatim R and typed Python signatures near the top. - Parameter pages (Model-Specification, Orders-and-Lags, Loss-Functions, Bounds, Initialisation, Persistence, Explanatory-Variables, Model-Estimation) carry an ## At a glance strict table summarising argument name, type, default, valid values, and applies-to. - Home.md trimmed: long method tables that duplicated per-function pages replaced with compact "where to look" tables; prominent links to Glossary, Roadmap, and llms.txt added. - TBA cells removed from reference pages (GUM, SSARIMA, Scale-Model, Simulation-Functions, Orders-and-Lags, Explanatory-Variables, Model-Estimation, Model-Information, Model-Specification) and tracked on Roadmap.md instead. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

    @config-i1 config-i1 committed Jun 16, 2026
  • CES is now available in Python Home.md: flip CES Python column from TBA to Yes; add an AutoCES row alongside auto.ces. CES.md: drop the R-only note and rewrite around an R-Python parallel structure (mirroring ES.md). The page now has interleaved Python / R usage examples for all four seasonality types and auto selection, a Parameters table with both type columns filled in, and a Fitted Attributes table with R element / Python attribute pairs.

    @config-i1 config-i1 committed Jun 9, 2026
  • Document Python reapply() / reforecast() and predict() complete/confidence * Rewrote Refitting-and-Reforecasting.md as a side-by-side R/Python reference matching the structure of the other wiki pages. Examples follow R-then-Python inside each section. Documents reapply(), reforecast(), the predict(interval="complete"|"confidence") aliases, and the speed/scope trade-offs vs the standard intervals. * Fitted-Values-and-Forecasts.md: flipped "complete" and "confidence" rows from "R only" to "Both" in the interval-types table; added a note pointing at Refitting-and-Reforecasting for mechanics. * Home.md: updated the Advanced Methods table — reapply/reforecast are now ".reapply()" / ".reforecast()" instead of "TBA". Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>

    @config-i1 config-i1 committed May 27, 2026
  • Additional losses in OM/OMG

    @config-i1 config-i1 committed May 27, 2026
  • coefbootstrap

    @config-i1 config-i1 committed May 27, 2026
  • Updates to reflect recent changes

    @config-i1 config-i1 committed May 27, 2026
  • R vs Python

    @config-i1 config-i1 committed May 26, 2026
  • SMA in Python

    @config-i1 config-i1 committed May 22, 2026
  • Removed lowess from python

    @config-i1 config-i1 committed May 22, 2026
  • Minor fixes

    @config-i1 config-i1 committed May 10, 2026
  • Occurrence Model

    @config-i1 config-i1 committed May 10, 2026
  • Plots and accuracy

    @config-i1 config-i1 committed Apr 16, 2026
  • More detailed functionality

    @config-i1 config-i1 committed Apr 15, 2026
  • More on msarima

    @config-i1 config-i1 committed Apr 15, 2026
  • Updated AutoADAM wiki

    @config-i1 config-i1 committed Apr 15, 2026
  • Updates in wiki to reflect the incoming changes for the smooth in Python

    @config-i1 config-i1 committed Apr 10, 2026
  • Install from pypi

    @config-i1 config-i1 committed Apr 9, 2026
  • No PyPI for now

    @config-i1 config-i1 committed Feb 11, 2026
  • A table with functionality fixed

    @config-i1 config-i1 committed Feb 8, 2026
  • A table with functionality

    @config-i1 config-i1 committed Feb 8, 2026
  • Pools of models and combinations

    @config-i1 config-i1 committed Feb 8, 2026
  • Fixes in descriptions

    @config-i1 config-i1 committed Feb 6, 2026
  • More Python properties

    @config-i1 config-i1 committed Jan 31, 2026
  • LOWESS explanation

    @config-i1 config-i1 committed Jan 31, 2026
  • Trying to fix reference

    @config-i1 config-i1 committed Jan 31, 2026
  • Propoer names of methods instead of YES

    @config-i1 config-i1 committed Jan 31, 2026