Ilya Kuznetsov

Results 42 comments of Ilya Kuznetsov

Done in [2d967ac536c1886925b1b3f8f000fe680b4356e5](https://github.com/manticoresoftware/columnar/commit/2d967ac536c1886925b1b3f8f000fe680b4356e5)

I added code to daemon to try to load libraries with `_avx2` postix (e.g. `lib_manticore_columnar_avx2.so`) if AVX2 is supported (`quantization_improvements` branches in daemon/MCL). If such libraries are not found, daemon...

Adding new options is easy. However, it is not clear what should be done with these options

Correct me if I'm wrong: 1. Code that results in `manticoresearch_text_embeddings.dll`/`manticoresearch_text_embeddings.so` (after `cargo build --lib --release`) is built externally by the CI and distributed with MCL 2. Our MCL/KNN library...

How the embeddings library is used: 1. On first insert daemon tells the knn library (from MCL) to create a model using a separate embeddings library 2. MCL tries to...

I implemented support for embeddings library in MCL and daemon (branches `embeddings` and `embeddings_generation` respectively). The next step is to integrate https://github.com/manticoresoftware/manticoresearch-text-embeddings/ into MCL and CI

I made changes to MCL (branch `ci/embeddings-lib`) so that the embeddings library could be built properly. Now it does work to some extent. Daemon searches for the embeddings library in...