Advertisement · 728 × 90

Posts by Jake VanderPlas

Post image

“Hey you need anything? I’m gonna stop by Anna’s FOOD food mart MART ᶠᵒᵒᵈ ᵐᵃʳᵗ “

11 months ago 20 4 2 0
Post image Post image Post image Post image

My carnivorous garden is really taking off this spring! In these photos: American pitcher plants, terrestrial bladderworts, a variety of sundews, and (of course) venus fly traps.

11 months ago 8 0 1 0
Post image

My carnivorous garden starting to come back from its winter dormancy! Love this time of year.

1 year ago 7 0 1 0
Post image

La pelota está en tu cancha

1 year ago 1 0 1 0

Friends quest partners and diamond league rivals in the same week, crazy!

1 year ago 1 0 0 0
Post image

Making LLMs run efficiently can feel scary, but scaling isn’t magic, it’s math! We wanted to demystify the “systems view” of LLMs and wrote a little textbook called “How To Scale Your Model” which we’re releasing today. 1/n

1 year ago 94 29 3 8
JEP 25516: Effort-based versioning for JAX — JAX documentation

JAX is the latest project to adopt EffVer!

Thanks @jakevdp.bsky.social for proposing JEP 25516!

jax.readthedocs.io/en/latest/je...

1 year ago 7 1 0 0

I added an answer – hope that helps!

1 year ago 1 0 2 0

>>> from functools import partial
>>> curry = partial(partial, partial)
>>> @curry
... def add(x, y):
... return x + y
...
>>> add_2 = add(2)
>>> add_2(1)
3

1 year ago 12 0 1 1
Advertisement

I think my favorite line of Python code I've ever encountered is

curry = partial(partial, partial)

So simple, but also breaks your brain

1 year ago 18 2 1 0
Post image

All I want for Christmas is cinematic back-story of the pigeon lady from Home Alone 2... Dresses like a Dickensian pauper in NYC in the 90s, with a hint of an Irish accent? Has access to the attic of the Lincoln Center? Controls Central Park's birds? WHO IS THIS LADY?

1 year ago 16 0 2 0

One of the pieces of parenting wisdom I've heard that has really stuck with me: a disregulated child has never been helped by a disregulated parent.

1 year ago 5 0 0 0
Post image

been reading through John Muir's writings recently, and it's striking that he doesn't reserve this kind of florid prose for grand settings like Yosemite, but sees natural beauty in every corner of the world he visits.

1 year ago 12 1 0 0

Spent some time this week digging into the Python array API standard (data-apis.org/array-api/la... ) and implementing some initial support in JAX. It's a cool project – interested to see where it goes!

2 years ago 7 0 0 0