add trailing \n\n after <end_of_image> to match reference implementation

This commit is contained in:
jmorganca 2025-03-11 12:02:38 +01:00 committed by Michael Yang
parent f63e62e546
commit 11bfa62796

View File

@ -133,8 +133,10 @@ func (m *Model) PostTokenize(ctx ml.Context, inputs []input.Input) ([]input.Inpu
result = append(result, input.Input{Multimodal: imageToken, MultimodalHash: fnvHash.Sum64()})
}
// <end_of_image>
result = append(result, input.Input{Token: 256000})
result = append(result,
input.Input{Token: 256000}, // <end_of_image>
input.Input{Token: 108}, // "\n\n"
)
}
}