We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8a6700e commit 18e0301Copy full SHA for 18e0301
backends/candle/src/lib.rs
@@ -365,12 +365,12 @@ impl CandleBackend {
365
// See: https://github.com/huggingface/text-embeddings-inference/issues/37
366
&& &std::env::var("USE_FLASH_ATTENTION").unwrap_or("True".to_string()).to_lowercase() == "true"
367
{
368
- tracing::info!("Starting FlashBert model on {:?}", device);
+ tracing::info!("Starting FlashModernBert model on {:?}", device);
369
Ok(Box::new(
370
FlashModernBertModel::load(vb, &config, model_type).s()?,
371
))
372
} else {
373
- tracing::info!("Starting Bert model on {:?}", device);
+ tracing::info!("Starting ModernBert model on {:?}", device);
374
375
ModernBertModel::load(vb, &config, model_type).s()?,
376
0 commit comments