Mean functions: better defaults and a formula interface
Nobody has claimed this yet.
- Dominant language
- Jupyter Notebook
- Stars
- 8
- Forks
- 4
- Avg merge
- 2d 2h
- Merged PRs (30d)
- 4
Description
Most GP libraries treat the mean function as an afterthought. The default is usually zero, and most examples never change it. But for practitioners, the mean function matters:
- A zero mean function means the GP reverts to zero away from data, which is rarely what you want in practice
- A constant mean is a better default (the GP reverts to the data mean), but still leaves trend on the table
- A linear mean function captures obvious trends and lets the kernel focus on residual structure, which is the semi-parametric GP pattern that works well in practice
ptgp currently has a Zero mean function. Some things to consider:
Better default
Should the default mean function be a constant (estimated from data) rather than zero? This is a small change that would make out-of-the-box behavior much more reasonable for practitioners who don't think about mean functions.
Formula interface
A random idea that might be interesting: a Wilkinson-style formula language (like R's lm) for specifying mean functions:
gp = pg.VFE(kernel=k, mean=pg.mean.Formula("1 + x1 + C(x2)"), ...)
Open questions
- What should the default mean function be? Constant or linear?
- Do mean functions need their own class, or can they just be a Python callable?
- What do people actually use for mean functions in practice?
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by reviewing ptgp's current Zero mean function and how VFE accepts its mean argument. Compare the proposed constant or linear default with the Formula interface and resolve the open questions about class design versus Python callables; the work is done when the project has a decided default and a defined formula approach.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- machine-learning
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Quiet
- Clarity
- Needs clarification
- Newbie friendliness
- 35/100