diff --git a/index-scheduler/src/lib.rs b/index-scheduler/src/lib.rs index f69736297..57eccbe66 100644 --- a/index-scheduler/src/lib.rs +++ b/index-scheduler/src/lib.rs @@ -5465,7 +5465,6 @@ mod tests { // the document with the id 4 should generate an embedding let docid = index.external_documents_ids.get(&rtxn, "4").unwrap().unwrap(); let embeddings = index.embeddings(&rtxn, docid).unwrap(); - dbg!(&embeddings); let embedding = &embeddings["my_doggo_embedder"]; assert!(!embedding.is_empty()); diff --git a/milli/src/vector/rest.rs b/milli/src/vector/rest.rs index e7fc509b3..fd771a228 100644 --- a/milli/src/vector/rest.rs +++ b/milli/src/vector/rest.rs @@ -163,7 +163,6 @@ impl Embedder { text_chunks: Vec>, threads: &ThreadPoolNoAbort, ) -> Result>>, EmbedError> { - dbg!(&text_chunks); threads .install(move || { text_chunks.into_par_iter().map(move |chunk| self.embed(chunk)).collect()