-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: updated methods to match docs (#14)
* feat: setup basic dataset versions * feat: setup concurrent annotation upload * feat: setup datasets base class * feat: setup image classification dataset classes * feat: setup bulk upload utils * feat: setup bulkupload * feat: upload from folder method * feat: upload from csv * fix: search test cases * fix: lint issues * feat: added algorithm to search * fix: test cases * feat: setup tests for search * chore: fix lint issues * fix: failing tests * chore: upgrade grpc module * chore: replace deprecated uuid package * chore: setup base rag class * feat: setup llma powered utilities * feat: setup chat method * fix: lint issues * feat: setup rag with tests * fix: failing tests with url helper * fix: lint issues * fix: addressed review comments * feat: use event emitter for bulk upload progress * chore: fix lint issues * refactor: use array notation for polygon type * chore: remove unused server state management code * fix: increase client state test timeout * fix: lint issues * fix: based on doc examples * fix: add missing external dependency * fix: updated model test cases * test: added more model test case * feat: added test case for multimodal input * chore: set default search metric to euclidean * fix: constructors
- Loading branch information
Showing
7 changed files
with
75 additions
and
13 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export const DEFAULT_TOP_K = 10; | ||
export const DEFAULT_SEARCH_METRIC = "cosine"; | ||
export const DEFAULT_SEARCH_METRIC = "euclidean"; | ||
export const DEFAULT_SEARCH_ALGORITHM = "nearest_neighbor"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters