Summary: reference the new Faiss paper in the docs. Also added Gergely as a co-author of Faiss. Some minor updates.
Reviewed By: mlomeli1
Differential Revision: D52829321
fbshipit-source-id: 0f1845beace6cd88f809ba50b87a8d446475d30b
Summary: Added the required terms of use, privacy policy and copyright statement for Meta OSS projects.
Reviewed By: algoriddle
Differential Revision: D43056233
fbshipit-source-id: 8541edd587107bf3129ff7f8b29ec26c016f779f
Summary:
Pull Request resolved: https://github.com/facebookresearch/faiss/pull/2582
A few more or less cosmetic improvements
* Index::idx_t was in the Index object, which does not make much sense, this diff moves it to faiss::idx_t
* replace multiprocessing.dummy with multiprocessing.pool
* add Alexandr as a core contributor of Faiss in the README ;-)
```
for i in $( find . -name \*.cu -o -name \*.cuh -o -name \*.h -o -name \*.cpp ) ; do
sed -i s/Index::idx_t/idx_t/ $i
done
```
For the fbcode deps:
```
for i in $( fbgs Index::idx_t --exclude fbcode/faiss -l ) ; do
sed -i s/Index::idx_t/idx_t/ $i
done
```
Reviewed By: algoriddle
Differential Revision: D41437507
fbshipit-source-id: 8300f2a3ae97cace6172f3f14a9be3a83999fb89
Summary:
I found some tiny mistakes, so fixed it.
This PR doesn't change the software behavior.
Pull Request resolved: https://github.com/facebookresearch/faiss/pull/2384
Reviewed By: beauby
Differential Revision: D37921065
Pulled By: mdouze
fbshipit-source-id: 060a969892e41b29485c5f2f358b5971ce9dfb8d
Summary:
A small compilation issue with gcc 7.3.0, does not appear with 7.4.0.
Also updated the readme.
Pull Request resolved: https://github.com/facebookresearch/faiss/pull/1593
Reviewed By: beauby
Differential Revision: D25705885
Pulled By: mdouze
fbshipit-source-id: 920b35264463cdd6ad10bbb09e07cf483fcaa724
Changelog:
- changed license: BSD+Patents -> MIT
- propagates exceptions raised in sub-indexes of IndexShards and IndexReplicas
- support for searching several inverted lists in parallel (parallel_mode != 0)
- better support for PQ codes where nbit != 8 or 16
- IVFSpectralHash implementation: spectral hash codes inside an IVF
- 6-bit per component scalar quantizer (4 and 8 bit were already supported)
- combinations of inverted lists: HStackInvertedLists and VStackInvertedLists
- configurable number of threads for OnDiskInvertedLists prefetching (including 0=no prefetch)
- more test and demo code compatible with Python 3 (print with parentheses)
- refactored benchmark code: data loading is now in a single file