James Wu

Results 7 comments of James Wu

I have also tried manually specifying a schema via: ``` vdb.create_table('my_table', embeddings_df, schema=my_schema) ``` to attempt to enforce correct ordering of schema fields my_schema ``` from pyarrow import field, float32,...

I can confirm the issue is no longer reproducible on the latest main branch (i'm on e61ba7f at time of writing). I built with mac and installed the wheel into...

I did some additional testing, looks like the change that fixed the issue is [the upgrade to pylance==0.18.0](https://github.com/lancedb/lancedb/pull/1657). My best guess is that the PR that fixed it was https://github.com/lancedb/lance/pull/2836...

related: https://github.com/lancedb/lancedb/pull/1575 the tests in the PR all supply the `vector_column_name` argument, which seems to be a functional temporary workaround

for anyone who may have come across this issue wondering why numpy is locked to

it seems like the trigger condition is when `freq * 2 = self.corpus_size`. we're missing the +1 term in calculating idf, which would also prevent negative idf values there seems...

just to help tie dispersed communication together, i believe these threads are the same issue: * https://github.com/PrefectHQ/prefect/issues/7239 * https://github.com/PrefectHQ/prefect/issues/15945 it seems that using heartbeats to detect crashed pids is an...