Skip to content

Commit

Permalink
Removed unnecessary parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmezzetti committed Jan 13, 2021
1 parent a867237 commit 37dad5a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/paperai/report/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def __init__(self, embeddings, db, qa):
self.names = []

# Extractive question-answering model
self.extractor = Extractor(self.embeddings, qa if qa else "NeuML/bert-small-cord19qa", False)
self.extractor = Extractor(self.embeddings, qa if qa else "NeuML/bert-small-cord19qa")

def build(self, queries, topn, output):
"""
Expand Down

0 comments on commit 37dad5a

Please sign in to comment.