Skip to content

Commit 18e0301

Browse files
Narsilkozistr
andauthored
Apply suggestions from code review
Co-authored-by: Hyeongchan Kim <[email protected]>
1 parent 8a6700e commit 18e0301

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backends/candle/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -365,12 +365,12 @@ impl CandleBackend {
365365
// See: https://github.com/huggingface/text-embeddings-inference/issues/37
366366
&& &std::env::var("USE_FLASH_ATTENTION").unwrap_or("True".to_string()).to_lowercase() == "true"
367367
{
368-
tracing::info!("Starting FlashBert model on {:?}", device);
368+
tracing::info!("Starting FlashModernBert model on {:?}", device);
369369
Ok(Box::new(
370370
FlashModernBertModel::load(vb, &config, model_type).s()?,
371371
))
372372
} else {
373-
tracing::info!("Starting Bert model on {:?}", device);
373+
tracing::info!("Starting ModernBert model on {:?}", device);
374374
Ok(Box::new(
375375
ModernBertModel::load(vb, &config, model_type).s()?,
376376
))

0 commit comments

Comments
 (0)