-
Thanks for the nice library!
I have the following class which takes a vector of "data":
```
SomeClass::SomeClass(std::vector data)
```
I'm trying a basic test with:
```
dingo::cont…
-
https://godbolt.org/z/TaxEM3rxP
```c
u8 log10_u16(u16 x) {
u8 n = 0;
n += (x >= 10);
n += (x >= 100);
n += (x >= 1000);
n += (x >= 10000);
return n;
}
```
produc…
-
Llama.cpp allows the use of control vectors (https://huggingface.co/jukofyork/creative-writing-control-vectors-v3.0), but I am unable to figure out to get it working in Oobabooga
There doe…
-
It looks like the short vector size is actually rounded up to the next power of 2. It is probably done for small sizes due to some performance concerns (e.g., 3 to 4), despite the fact that it is erro…
-
I was digging through how you handle non vector members for CSV and was curious about the reasoning behind the API requiring rowwise csv writes to be vector or array
```
template
concept w…
-
I'm trying to find top 5 similar images given a query image. Qdrant search is picking the top 5 searches but the results aren't accurate. I'm using embeddings from a finetuned model. Is there a way we…
-
According to a [Slack discussion (private link)](https://meilisearch.slack.com/archives/C0557UPQHQA/p1731493396446409?thread_ts=1731493068.993799&cid=C0557UPQHQA), users may instruct Meilisearch not t…
-
Hello,
I would like to access the CI vector after a DICE calculation (and not just the CI coefficients). However, when I try the following:
```
my_dice = shci.SHCISCF(rhf, norb, nelec)
my_dice…
-
One of my struggle when using PaperQA is the inference time every time I do queries. Is there a means I could do to import external vector DBs rather than just relying on NumpyVectorStore? caching is …
-
Hi, if I want to shuffle a vector of length 100 million (say 1 billion times), is this a suitable approach? The reason I thought that fisher Yates was a good choice was because I only have a few True …