Anton Troynikov

Results 75 comments of Anton Troynikov

We will find a way to make it work on IDEs, as a first cut @tazarov will take a look!

Please also update the embedding model documentation: https://github.com/chroma-core/docs/blob/main/docs/embeddings.md Currently the `AmazonBedrockEmbeddingFunction` is missing from the docs entirely.

I took a look at how voyager does this and I think it's buggy, because they just call `set_ef` on the index. What happens if you have concurrent queries asking...

No, we should instead change the interface.

This is unusual behavior and not expected. We have not yet reproduced this - if either of you are able to either share your data, or code for generating data...

@AbhiPawar5 when creating a new collection, could you try setting the `hnsw:search_ef` collection metadata key to 50? i.e. ```python collection = client.create_collection( name="collection_name", metadata={"hnsw:search_ef": 50} ) ``` I suspect what's...

@BalasubramanyamEvani thanks for proposing, we might want https://github.com/chroma-core/chroma/pull/2034 to land first.

I agree that this is correct. However, this may impact people who already have collections using the old EF. They would have to migrate, and we should let them know...

> I had similar realization that users' new queries will have slightly worse outcome for exact matches, but perhaps that would be marginal. I'll do a small test to prove...