HackerTrans
TopNewTrendsCommentsPastAskShowJobs

stansApprentice

no profile record

Submissions

TrajectoryKit, a competitive open-source deep research agent without fine-tuning

williamlugoloobi.com
1 points·by stansApprentice·4 ay önce·0 comments

Routing LLM queries using internal success predictions (70% cost reduction)

arxiv.org
1 points·by stansApprentice·5 ay önce·3 comments

LLMs encode how difficult problems are

arxiv.org
174 points·by stansApprentice·8 ay önce·38 comments

comments

stansApprentice
·5 ay önce·discuss
Thank you!

I haven't used Komilion before, but it seems like we were thinking in the same direction. There's definitely room to add more to our suggested application of the probe. That's why we kept it simple so that people can add more business logic on top of how someone may want to route (so stuff like length, topic, etc)
stansApprentice
·5 ay önce·discuss
Author here. The core idea is pretty simple: train linear probes on the model's internal state before it generates anything to predict if it'll succeed. Then use those predictions to route queries: Send easy ones to cheap inference, hard ones to expensive reasoning.

Two findings that surprised us:

1. The same model has completely different internal representations of "difficulty" depending on decoding settings. What GPT-oss thinks is hard with greedy ≠ what it thinks is hard with sampling.

2. Model difficulty and human difficulty are orthogonal. The problems they struggle with aren't the ones we struggle with, and this gap increases with extended reasoning.

Code: https://github.com/KabakaWilliam/llms_know_difficulty Probes: https://huggingface.co/CoffeeGitta/pika-probes

Happy to answer questions.