Daily brief · English

Before AI Revives an Old Research Note

A stale work automation research note shows why AI research agents are better used first to test whether the question still matters, not to rush into a polished answer.

🌐 이 글의 한국어 버전 →

  1. The common story is that AI agents are now doing “research” by themselves
  2. What I do buy is narrower, and more useful: an agent can become a patient junior analyst when the work has a clear scoreboard, a short feedback loop, and a sandbox that keeps mistakes cheap
  3. That distinction matters if you are not a developer

📰 Read 2분 · English

The tempting story is wrong

The common story is that AI agents are now doing “research” by themselves. I do not buy that yet.

What I do buy is narrower, and more useful: an agent can become a patient junior analyst when the work has a clear scoreboard, a short feedback loop, and a sandbox that keeps mistakes cheap. That is the real lesson from the Autoresearch experiment summarized on GeekNews. Not “the scientist is automated,” but “the boring loop can run while the human keeps judgment.”

That distinction matters if you are not a developer. Most office automation fails because people ask AI to “think better.” The better question is smaller: what repeated trial can I let it run, measure, reject, and try again?

I followed the loop, then watched where it broke

The GeekNews summary describes an Autoresearch setup where an LLM agent repeatedly edited `train.py`, ran training, checked a metric, then either committed the change or rolled it back. The source says the loop moved through phases: hyperparameter tuning first, then smaller architecture changes, then looser exploration.

That sounded familiar. Last week I tried a much less technical version with a recurring work problem: rewriting three versions of a client update until the acceptance criteria were met. The moment I gave the model a clear checklist, it improved. The moment I asked it to “find a better angle,” it became vague.

The ML experiment showed the same pattern at a higher level. The agent worked well when the search space was fenced. It struggled when the task became open-ended.

That is why I would not describe this as autonomous research. I would call it structured trial-and-error with a language model in the loop. That sounds less dramatic, but it is closer to something normal teams can actually use.

The useful part is not the agent. It is the scoreboard.

Here is the concrete part.

The experiment used the Ukiyo-eVG dataset, about 11,000 Japanese woodblock print images with phrase and bounding-box annotations. Because the original medical X-ray dataset was not available, the author shifted domains and built a CLIP-based setup. The model was roughly 90 million parameters: a ViT-Small backbone, DistilBERT, and a heatmap processor.

The test loop was intentionally short. Each experiment was kept to about five minutes. Training ran for 800 steps, around three minutes per run on an RTX 4090 according to the summary. The evaluation used Mean Rank and Recall@K on a 1,000-image test set.

Over one day, the agent ran 42 experiments. It committed 13 changes and reverted 29. Mean Rank moved from 344.68 to 157.43 during the loop, a 54% reduction. Final test performance was reported as Mean Rank 34.30, image-to-text R@5 of 53.0%, and text-to-image R@5 of 51.4%.

Those numbers are the reason this story is worth saving. Not because every workplace now needs ML agents. Because the work had a scoreboard.

The largest improvement reportedly came from relaxing a clamped temperature parameter, worth about -113 Mean Rank. Another chunk came from hyperparameter tuning, about -30 Mean Rank. In plain office language: the agent found one obvious constraint that was holding the system back, then kept adjusting knobs.

That is useful. It is also humbling.

A senior researcher might have found the temperature issue quickly. A careful engineer might have run Optuna or another optimizer. The agent did not magically invent a field. It kept trying, measuring, writing down results, and undoing bad changes.

For a non-developer office worker, the translation is simple:

If your task looks like thisTry agentic automation nowWait before automating
The result can be scored quicklyYes
Each attempt is cheap to runYes
Bad outputs can be discarded safelyYes
The agent can work inside a fixed template or fileYes
The “right answer” depends on taste, politics, or trustYes
One test takes half a dayYes
A mistake can reach customers, money, or private dataYes
The metric can be gamed easilyYes

This is where I take a stronger position: most people should not start with “AI agents.” They should start with a measurable loop.

For example, do not ask an AI tool to “make our weekly report better.” Ask it to produce five versions of the executive summary, score each against a checklist, reject weak ones, and keep the best two for human review.

Do not ask it to “improve customer support.” Ask it to rewrite 30 draft replies against three rules: answer the question in the first two sentences, remove blame language, and include one next step.

Do not ask it to “research a market.” Ask it to collect claims, tag each claim as evidence / assumption / unknown, and flag the rows where a human decision would be risky.

That is the Autoresearch lesson I would actually carry into work. A small system beats a grand prompt.

The risk is optimizing the wrong thing faster

The weak point is also clear. If the metric is poor, the loop becomes dangerous.

The GeekNews summary notes that Mean Rank was useful for rough judgment, but Median Rank may have been a better metric because it is less sensitive to outliers. That is not a minor detail. In any automated loop, the score becomes the boss.

I have seen this in office work. If you score writing by “shorter is better,” the model starts deleting nuance. If you score sales emails by reply rate, the model drifts toward pressure. If you score internal summaries by confidence, it hides uncertainty.

The experiment also became less stable after the hyperparameter phase. Bigger structural changes and “moonshot” attempts mostly failed. The agent sometimes tried the wrong kind of shell call or got confused while waiting for training. Sandboxing mattered because the system was expected to make mistakes.

So my caution is blunt: do not let an agent optimize anything you are not willing to measure badly for a while.

That includes hiring screens, medical decisions, finance workflows, compliance reviews, and anything that touches real customers without human review. The source supports a useful automation pattern. It does not support handing judgment to a loop and walking away.

What I would test on Monday

If I were bringing this into an ordinary team, I would not start with code. I would start with one repeatable work loop that already wastes time.

① Pick a task with 10 to 50 repeat attempts Examples: draft subject lines, rewrite support replies, classify inbound requests, clean meeting notes, compare vendor answers.

② Write a visible scorecard Use 3 to 5 rules. If the rules cannot fit on one screen, the loop is not ready.

③ Keep the agent away from production Let it draft, compare, rank, and reject. Let a person send, approve, or decide.

④ Record what it changed If you cannot see what changed between attempts, you cannot learn from the loop.

⑤ Stop when the gains flatten The Autoresearch run improved early, then became noisier. Office loops do the same.

복붙용 line for your own test:

> “Run five attempts, score each against this checklist, keep the best one, and explain what changed between attempt 1 and attempt 5.”

My thesis is simple: Autoresearch is most valuable when we stop treating it as a preview of fully automated science and start treating it as a practical pattern for reclaiming repetitive thinking time. The future of work will not arrive as one big autonomous system. For most of us, it will arrive as small loops that make yesterday’s manual retry feel unnecessary.

Primary next step: save the table above and apply it to one recurring task before you add any new AI tool.

Next time, I want to look at the harder question: how do we design a scorecard that does not quietly teach the AI the wrong behavior?

Take-aways

  • The common story is that AI agents are now doing “research” by themselves
  • What I do buy is narrower, and more useful: an agent can become a patient junior analyst when the work has a clear scoreboard, a short feedback loop, and a sandbox that keeps mistakes cheap
  • That distinction matters if you are not a developer

한국어 버전 →

View collection

Choose cards, video, or sources without losing the brief.

Cards 9 cards

The core card copy is also available in the article body and image alt text.