forked from facebookresearch/vissl
-
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.
Make faiss an optional dependency of VISSL and switch to faiss-gpu (f…
…acebookresearch#203) Summary: Pull Request resolved: facebookresearch#203 - making faiss an optional dependency. faiss is used only in 1 place in VISSL for clusterfit. - When user uses clusterfit, we check if faiss is installed or not. we give instructions to user at runtime to how to install faiss if not already done - we shift to using faiss-gpu since that's official dependency to use for faiss Reviewed By: bottler Differential Revision: D26725011 fbshipit-source-id: eac86595da9c998230aa74a4a00c7a894b6200f7
- Loading branch information
1 parent
701172a
commit 44bb572
Showing
7 changed files
with
29 additions
and
5 deletions.
There are no files selected for viewing
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,6 +1,5 @@ | ||
tensorboard==1.15.0 | ||
hydra-core>=1.0 | ||
faiss>=1.5.3 | ||
cython | ||
scikit-learn | ||
parameterized==0.7.4 | ||
|
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 |
---|---|---|
|
@@ -55,6 +55,7 @@ def get_version(): | |
"pre-commit", | ||
"nbconvert", | ||
"bs4", | ||
"faiss-gpu", | ||
] | ||
}, | ||
) |
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