Skip to content

Commit

Permalink
Turn on FAISS by default and use FAISS flat retrievers.
Browse files Browse the repository at this point in the history
Soon: Export trained approximators. FAISS K-NN graph.

Next:

- Implement pre-condition checks, failed to launch error
messages for processes. Rollback created models on failure to launch.

- Implement clustering.

- Implement location net, fine-tuning / training face recognition models
  • Loading branch information
akshay bhat committed Jun 4, 2018
1 parent fb3b00a commit 90bce65
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ virtualenv:
env:
global:
- AUTH_DISABLED=1
- ENABLE_FAISS=1
- SECRET_KEY=123213123123213213
- LAUNCH_BY_NAME_indexer_inception=1
- LAUNCH_BY_NAME_retriever_inception=1
Expand Down
1 change: 0 additions & 1 deletion deploy/compose/dev/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
- LAUNCH_BY_NAME_detector_textbox=1
- LAUNCH_Q_qextract=1
- LAUNCH_Q_qtrainer=1
- ENABLE_FAISS=1
- LAUNCH_Q_qstreamer=1
- LAUNCH_SCHEDULER=1
- LAUNCH_SERVER=1 # This supersedes NGINX and launches django development server with auto-reload
Expand Down
2 changes: 1 addition & 1 deletion server/dva/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -295,5 +295,5 @@ def show_toolbar(request):
# Max task attempts
MAX_TASK_ATTEMPTS = 5
# FAISS
ENABLE_FAISS = 'ENABLE_FAISS' in os.environ
ENABLE_FAISS = 'DISABLE_FAISS' not in os.environ

0 comments on commit 90bce65

Please sign in to comment.