Trending
's Avatar

@jessemichel

37
Followers
73
Following
82
Posts
22.11.2024
Joined
Posts Following

Latest posts by @jessemichel

The workflow of

terminal-based agentic coding -> pr -> comments -> updated pr

is so efficient and pleasant.

14.03.2026 03:24 👍 0 🔁 1 💬 0 📌 0

Go Burhan!

27.02.2026 17:29 👍 2 🔁 0 💬 0 📌 0
Video thumbnail

You'll understand our campaign more from this launch video than anything else. We gave it our heart and soul. Give it a watch.

27.02.2026 13:37 👍 103 🔁 24 💬 5 📌 16

I'm excited for the a generation of LLM-first programming languages. Languages that the model RLs well on. In the extreme case, you have inverse problem--given an LLM what's the best PL.

16.02.2026 20:43 👍 0 🔁 0 💬 0 📌 0
Preview
ENNUI ~ Elegant Neural Network User Interface ~ Welcome to ENNUI - An elegant neural network user interface which allows you to easily design, train, and visualize neural networks.

math.mit.edu/ennui/
github.com/martinjm97/E...

03.02.2026 14:41 👍 0 🔁 0 💬 0 📌 0
Post image

Back in the day, some friends and I made a website to teach people about neural networks. We implemented it all in typescript and haven't updated it in years. I can't believe it still works.

I really like how simple it is to play with and the little articles.

03.02.2026 14:41 👍 2 🔁 0 💬 1 📌 0
Post image

I'll be in NYC next week. I'd love to talk with folks in the robotics/AI space, especially on large-scale model training of VLA and factory automation.

12.01.2026 18:51 👍 0 🔁 0 💬 0 📌 0

I see your point that our brain both evaluates our actions and produces new actions. The idea of extrinsic reward is odd.

I wonder at a practical level what sota systems have a coupled backbone and then an action head and a reward head.

Happy to view this as a north star, but I'm curious.

06.12.2025 09:22 👍 0 🔁 0 💬 0 📌 0
Preview
The rise and fall of peer review Why the greatest scientific experiment in history failed, and why that's a great thing

Relatedly: maybe also a good time to question our assumptions about why peer review is helpful in the first place.

www.experimental-history.com/p/the-rise-a...

29.11.2025 14:57 👍 10 🔁 3 💬 2 📌 0

But in the future, it could look like

```python
from tap import Tap, Positional, ShortFlag, AddArgKwargs
from typing import Annotated

class Args(Tap):
arg_1: Annotated[int, Positional]
arg_2: Annotated[list[str], ShortFlag("a"), AddArgKwargs(nargs=2)]
```

27.11.2025 22:40 👍 0 🔁 0 💬 0 📌 0

For example, passing arguments currently looks like

```python
from tap import Tap

class Args(Tap):
arg_1: int
arg_2: list[str]

def configure(self) -> None:
self.add_argument("arg_1")
self.add_argument("-a", "--arg_2", nargs=2)
```

27.11.2025 22:40 👍 0 🔁 0 💬 1 📌 0
Preview
Feature request: Positional argument with default value · Issue #169 · swansonk14/typed-argument-parser Would it be possible to add support for default values for positional arguments, similarly to the standard Python argparse? class Args(Tap): config_path: str = "config.yaml" force_update: bool = Fa...

Thanks to the community and advances in type-hinting, it should be possible to improve `Tap` a lot.

`Annotated` allows the programmer to annotate a type (e.g., height: Annotated[int, "in inches"]), which we can use to pass options to `argparse`.

github.com/swansonk14/t...

27.11.2025 22:40 👍 0 🔁 0 💬 1 📌 0

Why is flow matching implemented with the differential form of the ODEs and not the integral equation version?

A discretization scheme for solving the integral equation would look like simulating the dynamics all at once.

17.11.2025 00:32 👍 2 🔁 0 💬 0 📌 0

Social media posting on research is rife with

vagueposting - attention seeking posts by people who want to act as if they're not seeking attention

I just want technical content :(

16.11.2025 18:06 👍 0 🔁 0 💬 0 📌 0

Appending "do not use defensive programming" to the end of my queries makes AI generated code much more terse and useful. I can handle weird edge cases after, but I want to start by getting the core functionality in place.

29.10.2025 17:32 👍 0 🔁 0 💬 0 📌 0

I've been surprised by how much I like OpenAI Atlas. It's so fast and it's the best AI-based search engine I've used. UX is amazing.

I reserve the right to dislike it in the future when it presumably tries to bake ADs into LLM outputs in a mublock-proof way :'(.

22.10.2025 04:56 👍 0 🔁 0 💬 0 📌 0

LLMs I've used have been almost completely useless at formalizing anything to do with denotational or operational semantics.

I find it so shocking how good models are at advanced math and coding, and then how bad they are at the intersection of the two.

04.10.2025 16:38 👍 0 🔁 0 💬 0 📌 0

I can't get any LLM to make a type system :(. PL folks have to write more papers to train the LLMs.

03.10.2025 16:30 👍 0 🔁 0 💬 0 📌 0
Post image

I remember when Windows added ads to the start menu. I think apple turned on a default to show ads (at least it can be toggled off for now). I left Linux because of the driver bugs, but Linux is looking pretty good now.

01.10.2025 17:08 👍 1 🔁 0 💬 0 📌 0

I believe these techniques can lead to:
new simulators that enable optimization through contact
new probabilistic algorithms with discontinuities
new differentiable renderers that better model occlusion
new ways to solve ML problems e.g. selecting MOEs and doing image gen in continuous space

25.09.2025 17:41 👍 0 🔁 0 💬 0 📌 0
Doctoral Defense: Distribution Programming for Physics-Based Computations – MIT EECS Electrical Engineers design systems that sense, process, and transmit energy and information. We leverage computational, theoretical, and experimental tools to develop groundbreaking sensors and…

Full abstract
www.eecs.mit.edu/eecs-events/...

25.09.2025 17:41 👍 0 🔁 0 💬 1 📌 0

TLDR: Modeling discontinuities (occlusion, cracks, and contact) is hard, but distribution theory gives a systematic way to model these phenomena. I introduce distribution programming, which enables implementation/autodiff by using programming primitives that denote distributions.

25.09.2025 17:41 👍 0 🔁 0 💬 1 📌 0
Post image Post image Post image

Successfully defended my thesis:
Distribution Programming for Physics-Based Computations

25.09.2025 17:41 👍 1 🔁 0 💬 1 📌 0

I'd love a good biking route from Cambridge to Logan Airport and a safe place to park the bike at the airport 🚲 ✈️ .

I know this isn't exclusively in Cambridge, but is this possible @realBurhanAzeem @Marc_C_McGovern? Thanks for all you've done for bikers!

17.09.2025 20:36 👍 0 🔁 0 💬 0 📌 0

I got an email that was clearly automated but had a personalized tag line about my research in it. Something of the form: "I was interested in your research on ..."

I'm just bracing for a new wave of spam like this. I need an AI to screen my emails from this slop.

12.09.2025 20:03 👍 0 🔁 0 💬 0 📌 0
Post image

My defense talk is completely hopeless. There is nothing anyone can do for it.

09.09.2025 15:46 👍 0 🔁 0 💬 0 📌 0

Manual, light-weight intuition building, automation to get a robust setup that can easily be edited, and manually edit.

05.09.2025 20:36 👍 0 🔁 0 💬 0 📌 0
Post image

Plotting workflow: prototype in Desmos, use chat to write matplotlib code, and do by-hand checking and tuning.

I want more of this workflow.

05.09.2025 20:36 👍 0 🔁 0 💬 1 📌 0

Does Meta stand for metadata because they store all your data and sell it to advertisers?

02.09.2025 15:11 👍 0 🔁 0 💬 0 📌 0

I just randomly joined a member of the MIT admin for lunch. He's part of the office that helps students reserve space at MIT. It was a great reminder of all the wonderful staff at MIT who made helped make my days at MIT better. Thanks Aaron!

27.08.2025 18:33 👍 0 🔁 0 💬 0 📌 0