Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Indexing #314

Merged
merged 36 commits into from
Mar 21, 2023
Merged
Show file tree
Hide file tree
Changes from 34 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
7dcc147
adding linear search, faiss ann search, cached storage, and redis sto…
Feb 27, 2023
26dbf15
formatting
Feb 27, 2023
e201ac0
formatting and fixing couple of issues
Feb 27, 2023
01abbe1
fix the backward compatibility issue
Feb 28, 2023
f7f3576
add dependencies
Feb 28, 2023
b6508b1
remove dependencies
Feb 28, 2023
672378f
fixed typing issues
Mar 1, 2023
5ef3742
remove extra typing
Mar 1, 2023
e811667
move evaluator
Mar 1, 2023
3507f2f
fix tests
Mar 1, 2023
3c131d1
switch from dbm to shelve
Mar 1, 2023
92502ac
set temp dir for storing cached store
Mar 1, 2023
71ebfdc
add debug logging
Mar 1, 2023
2f16f5a
add debug logging
Mar 1, 2023
1c9728d
specify dbm implementation for cross-machine compatibility
Mar 1, 2023
c97e412
switch to ndb.dumb as other options not available on all machines
Mar 1, 2023
b520f45
fix import orders
Mar 1, 2023
185d5b9
remove extraneous logging
Mar 2, 2023
0e28daa
ensure only names are stored in metadata
Mar 6, 2023
807a41a
separate store from store_type, and search from search_type, needed f…
Mar 6, 2023
2b51698
use str path
Mar 6, 2023
45e3d47
put typing in one place
Mar 6, 2023
80e9fee
add canonical name for consistent reload
Mar 6, 2023
d32406f
accept canonical_name
Mar 7, 2023
573ec4f
Remove optional
Mar 7, 2023
904f06e
adding more tests
Mar 7, 2023
077d920
pass str for path
Mar 7, 2023
691df9c
support more distances for LinearSearch
Mar 9, 2023
09aa1cc
add indexing colab
Mar 9, 2023
8719b0c
applying fixes to PR review comments
Mar 13, 2023
7eab295
typo
Mar 13, 2023
ca3a803
fix the tests for no normalization
Mar 14, 2023
7a5321c
add distance
Mar 14, 2023
f7c1d4c
fix typing
Mar 14, 2023
90d324b
Merge branch 'development' into indexing
dnazila Mar 20, 2023
caa206a
remove double definition
Mar 21, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ repos:
stages: ['commit']

- repo: https://github.com/pycqa/isort
rev: 5.10.1
rev: 5.12.0
hooks:
- id: isort
name: isort (python)
Expand Down
Loading