mirror of
https://github.com/huggingface/text-generation-inference.git
synced 2025-04-27 13:02:12 +00:00
parent
7a1ba58557
commit
c13b9d87c9
@ -308,8 +308,8 @@ fn prepare_input(
|
|||||||
|
|
||||||
// Optionally truncate
|
// Optionally truncate
|
||||||
let (inputs, input_length) = match truncate {
|
let (inputs, input_length) = match truncate {
|
||||||
// Truncate is some and > encoding length
|
// Truncate is some and < encoding length
|
||||||
Some(truncate) if truncate > encoding.len() => {
|
Some(truncate) if truncate < encoding.len() => {
|
||||||
// truncate encoding and decode new inputs
|
// truncate encoding and decode new inputs
|
||||||
encoding.truncate(truncate, 0, TruncationDirection::Left);
|
encoding.truncate(truncate, 0, TruncationDirection::Left);
|
||||||
let inputs = tokenizer
|
let inputs = tokenizer
|
||||||
|
Loading…
Reference in New Issue
Block a user