Skip to content
Permalink
master

Commits on Sep 13, 2021

  1. Added functionality for Google Colab usecase in Crawler Module (#1436)

    * Added functionality for Google Colab usecase
    
    * Corrected typo in installation guide of driver
    
    * Corrected typo in installation guide of driver
    
    * Corrected the copy command
    prikmm committed Sep 13, 2021
  2. Add MostSimilarDocumentsPipeline (#1413)

    * [pipeline] MostSimilarDocumentsPipeline added
    
    * [pipeline] mypy bug fixed.
    
    * [pipeline] mypy bug fixed.
    
    * [pipeline] test cases added.
    
    * [pipeline] test cases added.
    
    * [pipeline] set return_embedding back to false.
    
    * [pipeline] return a list of Documents
    
    * [pipeline] define the ids
    
    * [pipeline] code refactor.
    
    * [pipeline] code refactor.
    
    * [pipeline] test case improved.
    
    * Update docstring
    
    Co-authored-by: Malte Pietsch <malte.pietsch@deepset.ai>
    akkefa and tholor committed Sep 13, 2021

Commits on Sep 10, 2021

  1. Adding multi gpu support for DPR inference (#1414)

    * Added support for Multi-GPU inference to DPR including benchmark
    
    * fixed multi gpu
    
    * added batch size to benchmark to better reflect multi gpu capabilities
    
    * remove unnecessary entry in config.json
    
    * fixed typos
    
    * fixed config name
    
    * update benchmark to use DEVICES constant
    
    * changed multi gpu parameters and updated docstring
    
    * adds silent fallback on cpu
    
    * update doc string, warning and config
    
    Co-authored-by: Michel Bartels <kontakt@michelbartels.com>
    Co-authored-by: Malte Pietsch <malte.pietsch@deepset.ai>
    3 people committed Sep 10, 2021

Commits on Sep 9, 2021

Commits on Sep 8, 2021

  1. Bump pillow from 8.2.0 to 8.3.2 (#1423)

    Bumps [pillow](https://github.com/python-pillow/Pillow) from 8.2.0 to 8.3.2.
    - [Release notes](https://github.com/python-pillow/Pillow/releases)
    - [Changelog](https://github.com/python-pillow/Pillow/blob/master/CHANGES.rst)
    - [Commits](python-pillow/Pillow@8.2.0...8.3.2)
    
    ---
    updated-dependencies:
    - dependency-name: pillow
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot committed Sep 8, 2021

Commits on Sep 5, 2021

  1. Bump Weaviate version to 1.7.0 (#1412)

    * Bump Weaviate
    
    * Bump Weaviate
    
    * Bump Weaviate client
    
    * Bump Weaviate
    
    * Revert client version
    
    There is a change in the client API that needs to be addressed before bumping its version
    bobvanluijt committed Sep 5, 2021

Commits on Sep 3, 2021

  1. Remove stale bot

    tholor committed Sep 3, 2021

Commits on Sep 2, 2021

  1. Enable docker-compose for GPUs & Add public UI image (#1406)

    * add docker-compose-gpu file
    
    * Update README.md
    
    * Update docker-compose.yml
    
    * Update docker-compose-gpu.yml
    
    * Update docker-compose.yml
    
    * Update docker-compose-gpu.yml
    tholor committed Sep 2, 2021
  2. Fix tesseract installation in Dockerfile (#1405)

    * Fix Dockerfile
    
    * Update Dockerfile-GPU
    tholor committed Sep 2, 2021
  3. Add sentence-transformers as mandatory dependency and remove from dev… (

    #1387)
    
    * Add sentence-transformers as mandatory dependency and remove from dev dependency
    
    * Pin sentence-transformers version
    julian-risch committed Sep 2, 2021

Commits on Sep 1, 2021

  1. Update faq model (#1401)

    brandenchan committed Sep 1, 2021
  2. Fix CI (introduced by OCR PR #1349) (#1399)

    * satisfy mypy
    
    * add import
    tholor committed Sep 1, 2021
  3. Fix Github action

    tholor committed Sep 1, 2021
  4. Add ImageToTextConverter and PDFToTextOCRConverter that utilize OCR (#…

    …1349)
    
    * add image.py converter
    
    * add PDFtoImageConverter
    
    * add init to PDFtoImageConverter and classes to __init__
    
    * update imagetotext pipeline
    
    * update imagetotext pipeline
    
    * update imagetotext pipeline
    
    * update imagetotext pipeline
    
    * update imagetotext pipeline
    
    * update imagetotext pipeline
    
    * update imagetotext pipeline
    
    * revert change in base.py in file_conv
    
    * Update base.py
    
    * Update pdf.py
    
    * add ocr file_converter testcase & update dockerfile
    
    * fix tesseract exception message typo
    
    * fix _image_to_text doctstring
    
    * add tesseract installation to CI
    
    * add tesseract installation to CI
    
    * add content test for PDF OCR converter
    
    * update PDFToTextOCRConverter constructor doctsring
    
    * replace image files with tmp paths for image.py convert
    
    * replace image files with tmp paths for image.py convert
    
    * Update README.md
    
    Co-authored-by: Malte Pietsch <malte.pietsch@deepset.ai>
    shahrukhx01 and tholor committed Sep 1, 2021

Commits on Aug 31, 2021

  1. Add support for no Docker envs in Tutorial 13 (#1365)

    * Add support for no docker envs e.g. colab
    
    * Generate md
    brandenchan committed Aug 31, 2021

Commits on Aug 30, 2021

  1. Catch Elastic's search_phase_execution and raise with descriptive me…

    …ssage. (#1371)
    
    * [document_store] Catch Elastic's search_phase_execution_exception (dense retrieval if not all documents have an embedding) closes #1135
    
    * change error msg
    
    * remove unused import
    
    Co-authored-by: Malte Pietsch <malte.pietsch@deepset.ai>
    akkefa and tholor committed Aug 30, 2021
  2. Rag tutorial fixes (#1375)

    * Update Tutorial7_RAG_Generator.ipynb
    
    `delete_all_documents` --> `delete_documents` (cf. #1045)
    
    * Update Tutorial7_RAG_Generator.py
    
    `delete_all_documents` --> `delete_documents` (cf. #1045)
    hammer committed Aug 30, 2021
  3. Fix behavior of delete_documents() with filters for Milvus (#1354)

    * Fix behavior of delete_documents()
    
    Delete filtered set of vectors rather than the whole collection
    
    * Update milvus.py
    
    * Update milvus.py
    cambiumproject committed Aug 30, 2021
  4. delete_all_documents() replaced by delete_documents() (#1377)

    * [UPDT] delete_all_documents() replaced by delete_documents()
    
    * [UPDT] warning logs to be fixed
    
    * [UPDT] delete_all_documents() renamed and the same method added
    
    Co-authored-by: Ram Garg <ramgarg102@gmai.com>
    ramgarg102 and Ram Garg committed Aug 30, 2021
  5. Editing docs read.me for new docs website workflow (#1372)

    * editing docs read.me for new docs website workflow
    
    * added new links to docs
    PiffPaffM committed Aug 30, 2021

Commits on Aug 24, 2021

  1. Add query classifier usage docs (#1348)

    * Create query_classifier.md
    
    * Update query_classifier.md
    
    * Update query_classifier.md
    
    * Update query_classifier.md
    
    * Update query_classifier.md
    
    Co-authored-by: Malte Pietsch <malte.pietsch@deepset.ai>
    shahrukhx01 and tholor committed Aug 24, 2021

Commits on Aug 23, 2021

Commits on Aug 20, 2021

  1. Add simple docs2answer node to allow FAQ style QA / Doc search in API (

    …#1361)
    
    * minimal docs2answer node
    
    * enable logs again
    tholor committed Aug 20, 2021
Older