Earlier quoted context omitted.
opinion is ephemeral, cannot be independently confirmed or denied; purely single viewer information sounds like not-a-fact to me Opinion is a ghost in the machine—fleeting, unanchored, and vanishing upon inspection. It leaves no footprint for another mind to verify, no independent trail of evidence to confirm or deny its existence. To rely on such solitary perception is to drift in a void where facts do not exist; it…
It seems to me trivial to verify: just ask.
Show HN: Cactus Hybrid: We taught Gemma 4 to know when it's wrong
21–30 of 55 posts
Re: Show HN: Cactus Hybrid: We taught Gemma 4 to know when it's wrong
#22Have you benched this for coding tasks, with a fallback to a larger local model, for example Qwen-3.6-27B? Or using it for sub-tasks, where a framework with a larger primary model dispatches simpler jobs ("summarize ...", etc.) to it?
Re: Show HN: Cactus Hybrid: We taught Gemma 4 to know when it's wrong
#23Does the model quality become degraded in other ways?
Re: Show HN: Cactus Hybrid: We taught Gemma 4 to know when it's wrong
#24> the hidden state for different layers carry meaningful self-awareness signal for various situations. Is it plausible to wonder if some developer judgement feels, like maybe "the code I just wrote is clean/crufty", or "things came together smoothly/janky", might have extractable signals in some models? If so, might one create a shopping list of desired signals to check for in a model, as with activation steering con…
Re: Show HN: Cactus Hybrid: We taught Gemma 4 to know when it's wrong
#25Re: Show HN: Cactus Hybrid: We taught Gemma 4 to know when it's wrong
#26Earlier quoted context omitted.
> pure opinion (I like green) "I like green" is a statement of fact about what you like. "Green is good" would be an opinion. It's funny to me how often people mix the two. > forms can be filtered by these classes fairly easily Obviously not so easily. :)
opinion is ephemeral, cannot be independently confirmed or denied; purely single viewer information sounds like not-a-fact to me Opinion is a ghost in the machine—fleeting, unanchored, and vanishing upon inspection. It leaves no footprint for another mind to verify, no independent trail of evidence to confirm or deny its existence. To rely on such solitary perception is to drift in a void where facts do not exist; it…
Confirmation also is somewhat orthogonal: there can be true facts that we can't confirm.
Conventionally, "I like green" is considered a factual claim about the speaker's preferences. Even if you refuse to acknowledge it as a fact because of the restrictions you've given, that doesn't make it an opinion. It's subjective, but it's not an opinion.
Would you say that if someone is experiencing a headache, and they say "I have a headache", that that's also merely an opinion?
Re: Show HN: Cactus Hybrid: We taught Gemma 4 to know when it's wrong
#27Earlier quoted context omitted.
opinion is ephemeral, cannot be independently confirmed or denied; purely single viewer information sounds like not-a-fact to me Opinion is a ghost in the machine—fleeting, unanchored, and vanishing upon inspection. It leaves no footprint for another mind to verify, no independent trail of evidence to confirm or deny its existence. To rely on such solitary perception is to drift in a void where facts do not exist; it…
It seems to me trivial to verify: just ask.
Re: Show HN: Cactus Hybrid: We taught Gemma 4 to know when it's wrong
#28Re: Show HN: Cactus Hybrid: We taught Gemma 4 to know when it's wrong
#29> "post-trained to know when it's wrong" Is it also post-trained to know when it's wrong about when it's wrong? > "Every response comes with a confidence score between 0 and 1" How confident is it in its confidence? Please, I'm sure that what you're doing is very neat and useful, but use other language to describe it. I beg you. You can't know when you're wrong. You can only know when you're unsure or inconsistent. Y…
https://plato.stanford.edu/entries/knowledge-analysis/
This is why LLMs are more successful in programming than other disciplines: it's easier to assess correctness of results, through proofs, typechecking, and testing. Similarly for maths and applied maths. Much harder in the humanities.
Re: Show HN: Cactus Hybrid: We taught Gemma 4 to know when it's wrong
#301. Consider using conformal prediction to calibrate the cutoff. Conformal prediction provides a distribution-free guarantee under exchangeability. This would let you turn your raw probe score into a threshold with a guaranteed bound on the rate of wrongly-kept on-device answers. Source: https://en.wikipedia.org/wiki/Conformal_prediction
2. The best indicators of confidence in ML come from multiple independent methods. What was the result if you combine the token entropy and verbal confidence reporting methods? Does this improve the result?
3. I noticed you didn't mention the assessment method of rerunning the model and judging whether outputs are consistent. How does that method compare in terms of AUROC?