This is the first post on the site. Mostly a placeholder so the page renders end-to-end before I write anything real.
The plan is to use this space for short notes on what I’m learning — machine learning, data, and the messy parts in between.
Why a separate blog
Projects belong on GitHub. A resume belongs in a PDF. But the in-between thinking — what worked, what broke, what I’d do differently — needs somewhere quieter to live. That’s what this is.
Math
Inline: .
Block:
Callouts
Code
def softmax(x):
e = np.exp(x - x.max())
return e / e.sum()
Embeds
More soon.