[agent/codex:gpt-5.4-mini] Read ~/spec/code/core/go/i18n/RFC.md fully. Find features de... #184

Merged
Virgil merged 1 commit from agent/read---spec-code-core-go-i18n-rfc-md-ful into dev 2026-04-02 09:27:05 +00:00

View file

@ -1542,35 +1542,7 @@ func (t *Tokeniser) checkInflectionEcho(tokens []Token, idx int) (bool, bool) {
// resolveToken assigns the final classification to an ambiguous token
// based on verb and noun scores from disambiguation signals.
func (t *Tokeniser) resolveToken(tok *Token, verbScore, nounScore float64, components []SignalComponent) {
total := verbScore + nounScore
// If only the default prior fired, keep confidence near chance rather than
// pretending the classification is strongly supported.
if total < LowInformationScoreThreshold {
if verbScore >= nounScore {
tok.Type = TokenVerb
tok.Confidence = LowInformationVerbConfidence
tok.AltType = TokenNoun
tok.AltConf = LowInformationNounConfidence
} else {
tok.Type = TokenNoun
tok.Confidence = LowInformationNounConfidence
tok.AltType = TokenVerb
tok.AltConf = LowInformationVerbConfidence
}
} else {
if verbScore >= nounScore {
tok.Type = TokenVerb
tok.Confidence = verbScore / total
tok.AltType = TokenNoun
tok.AltConf = nounScore / total
} else {
tok.Type = TokenNoun
tok.Confidence = nounScore / total
tok.AltType = TokenVerb
tok.AltConf = verbScore / total
}
}
tok.Type, tok.Confidence, tok.AltType, tok.AltConf = classifyAmbiguousToken(verbScore, nounScore)
if t.withSignals {
tok.Signals = &SignalBreakdown{
@ -1581,6 +1553,23 @@ func (t *Tokeniser) resolveToken(tok *Token, verbScore, nounScore float64, compo
}
}
func classifyAmbiguousToken(verbScore, nounScore float64) (TokenType, float64, TokenType, float64) {
total := verbScore + nounScore
// Keep the fallback close to chance when only the default prior fired.
if total < LowInformationScoreThreshold {
if verbScore >= nounScore {
return TokenVerb, LowInformationVerbConfidence, TokenNoun, LowInformationNounConfidence
}
return TokenNoun, LowInformationNounConfidence, TokenVerb, LowInformationVerbConfidence
}
if verbScore >= nounScore {
return TokenVerb, verbScore / total, TokenNoun, nounScore / total
}
return TokenNoun, nounScore / total, TokenVerb, verbScore / total
}
// splitTrailingPunct separates a word from its trailing punctuation.
// Returns the word and the punctuation suffix. It also recognises
// standalone punctuation tokens such as "." and ")".