Example Research Note

A minimal example post showing code, math, images, and front matter for mlbot.blog.

This is a minimal example post for mlbot.blog.

Inline math should work: \(E = mc^2\).

Block math should work:

\[ L(\theta) = \mathbb{E}_{(x,y) \sim D}\left[-\log p_\theta(y \mid x)\right] \]

Code highlighting should work:

def mean(values: list[float]) -> float:
    if not values:
        raise ValueError("values must not be empty")
    return sum(values) / len(values)