Shikhar Jaiswal
Shikhar Jaiswal
Hey everyone, This is an issue I faced while trying to generate the QPS vs Recall plots for `ann-benchmarks`. The issue is that when building the algorithms with `parallelism =...
Relevant: #61
TODO - [ ] Add coverage clause for python files.
I was looking at the comparison results that the maintainers have very generously provided with respect to SCANN [here](https://github.com/facebookresearch/faiss/wiki/Indexing-1M-vectors#4-bit-pq-comparison-with-scann). I wished to know whether the comparison was made keeping the...
I usually use the following script for generating `FAISS-IVF` indices on floating point data: ``` import numpy as np import faiss A = np.fromfile('base.bin', dtype=np.int32) shape = A[:2] A =...
Thanks guys for this amazing report, it helped me a lot in understanding convolutional arithmetic. I think I found a slight error in the description of the figure 4.7 description...
### Question I'm trying to infer the shapes of intermediate tensors of a pre-trained Transformer model with a dynamically-sized input. Dynamic input sizes block the shape inference of intermediate tensors...