Spaces:
Build error
Build error
File size: 12,090 Bytes
e62781a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 |
#!/usr/bin/env python3
# Copyright 2017-present, Facebook, Inc.
# All rights reserved.
#
# This source code is licensed under the license found in the
# LICENSE file in the root directory of this source tree.
"""Full DrQA pipeline."""
import torch
import regex
import heapq
import math
import time
import logging
from multiprocessing import Pool as ProcessPool
from multiprocessing.util import Finalize
from ..reader.vector import batchify
from ..reader.data import ReaderDataset, SortedBatchSampler
from .. import reader
from .. import tokenizers
from . import DEFAULTS
logger = logging.getLogger(__name__)
# ------------------------------------------------------------------------------
# Multiprocessing functions to fetch and tokenize text
# ------------------------------------------------------------------------------
PROCESS_TOK = None
PROCESS_DB = None
PROCESS_CANDS = None
def init(tokenizer_class, tokenizer_opts, db_class, db_opts, candidates=None):
global PROCESS_TOK, PROCESS_DB, PROCESS_CANDS
PROCESS_TOK = tokenizer_class(**tokenizer_opts)
Finalize(PROCESS_TOK, PROCESS_TOK.shutdown, exitpriority=100)
PROCESS_DB = db_class(**db_opts)
Finalize(PROCESS_DB, PROCESS_DB.close, exitpriority=100)
PROCESS_CANDS = candidates
def fetch_text(doc_id):
global PROCESS_DB
return PROCESS_DB.get_doc_text(doc_id)
def tokenize_text(text):
global PROCESS_TOK
return PROCESS_TOK.tokenize(text)
# ------------------------------------------------------------------------------
# Main DrQA pipeline
# ------------------------------------------------------------------------------
class DrQA(object):
# Target size for squashing short paragraphs together.
# 0 = read every paragraph independently
# infty = read all paragraphs together
GROUP_LENGTH = 0
def __init__(
self,
reader_model=None,
embedding_file=None,
tokenizer=None,
fixed_candidates=None,
batch_size=128,
cuda=True,
data_parallel=False,
max_loaders=5,
num_workers=None,
db_config=None,
ranker_config=None
):
"""Initialize the pipeline.
Args:
reader_model: model file from which to load the DocReader.
embedding_file: if given, will expand DocReader dictionary to use
all available pretrained embeddings.
tokenizer: string option to specify tokenizer used on docs.
fixed_candidates: if given, all predictions will be constrated to
the set of candidates contained in the file. One entry per line.
batch_size: batch size when processing paragraphs.
cuda: whether to use the gpu.
data_parallel: whether to use multile gpus.
max_loaders: max number of async data loading workers when reading.
(default is fine).
num_workers: number of parallel CPU processes to use for tokenizing
and post processing resuls.
db_config: config for doc db.
ranker_config: config for ranker.
"""
self.batch_size = batch_size
self.max_loaders = max_loaders
self.fixed_candidates = fixed_candidates is not None
self.cuda = cuda
logger.info('Initializing document ranker...')
ranker_config = ranker_config or {}
ranker_class = ranker_config.get('class', DEFAULTS['ranker'])
ranker_opts = ranker_config.get('options', {})
self.ranker = ranker_class(**ranker_opts)
logger.info('Initializing document reader...')
reader_model = reader_model or DEFAULTS['reader_model']
self.reader = reader.DocReader.load(reader_model, normalize=False)
if embedding_file:
logger.info('Expanding dictionary...')
words = reader.utils.index_embedding_words(embedding_file)
added = self.reader.expand_dictionary(words)
self.reader.load_embeddings(added, embedding_file)
if cuda:
self.reader.cuda()
if data_parallel:
self.reader.parallelize()
if not tokenizer:
tok_class = DEFAULTS['tokenizer']
else:
tok_class = tokenizers.get_class(tokenizer)
annotators = tokenizers.get_annotators_for_model(self.reader)
tok_opts = {'annotators': annotators}
# ElasticSearch is also used as backend if used as ranker
if hasattr(self.ranker, 'es'):
db_config = ranker_config
db_class = ranker_class
db_opts = ranker_opts
else:
db_config = db_config or {}
db_class = db_config.get('class', DEFAULTS['db'])
db_opts = db_config.get('options', {})
logger.info('Initializing tokenizers and document retrievers...')
self.num_workers = num_workers
self.processes = ProcessPool(
num_workers,
initializer=init,
initargs=(tok_class, tok_opts, db_class, db_opts, fixed_candidates)
)
def _split_doc(self, doc):
"""Given a doc, split it into chunks (by paragraph)."""
curr = []
curr_len = 0
for split in regex.split(r'\n+', doc):
split = split.strip()
if len(split) == 0:
continue
# Maybe group paragraphs together until we hit a length limit
if len(curr) > 0 and curr_len + len(split) > self.GROUP_LENGTH:
yield ' '.join(curr)
curr = []
curr_len = 0
curr.append(split)
curr_len += len(split)
if len(curr) > 0:
yield ' '.join(curr)
def _get_loader(self, data, num_loaders):
"""Return a pytorch data iterator for provided examples."""
dataset = ReaderDataset(data, self.reader)
sampler = SortedBatchSampler(
dataset.lengths(),
self.batch_size,
shuffle=False
)
loader = torch.utils.data.DataLoader(
dataset,
batch_size=self.batch_size,
sampler=sampler,
num_workers=num_loaders,
collate_fn=batchify,
pin_memory=self.cuda,
)
return loader
def process(self, query, candidates=None, top_n=1, n_docs=5,
return_context=False):
"""Run a single query."""
predictions = self.process_batch(
[query], [candidates] if candidates else None,
top_n, n_docs, return_context
)
return predictions[0]
def process_batch(self, queries, candidates=None, top_n=1, n_docs=5,
return_context=False):
"""Run a batch of queries (more efficient)."""
t0 = time.time()
logger.info('Processing %d queries...' % len(queries))
logger.info('Retrieving top %d docs...' % n_docs)
# Rank documents for queries.
if len(queries) == 1:
ranked = [self.ranker.closest_docs(queries[0], k=n_docs)]
else:
ranked = self.ranker.batch_closest_docs(
queries, k=n_docs, num_workers=self.num_workers
)
all_docids, all_doc_scores = zip(*ranked)
# Flatten document ids and retrieve text from database.
# We remove duplicates for processing efficiency.
flat_docids = list({d for docids in all_docids for d in docids})
did2didx = {did: didx for didx, did in enumerate(flat_docids)}
doc_texts = self.processes.map(fetch_text, flat_docids)
# Split and flatten documents. Maintain a mapping from doc (index in
# flat list) to split (index in flat list).
flat_splits = []
didx2sidx = []
for text in doc_texts:
splits = self._split_doc(text)
didx2sidx.append([len(flat_splits), -1])
for split in splits:
flat_splits.append(split)
didx2sidx[-1][1] = len(flat_splits)
# Push through the tokenizers as fast as possible.
q_tokens = self.processes.map_async(tokenize_text, queries)
s_tokens = self.processes.map_async(tokenize_text, flat_splits)
q_tokens = q_tokens.get()
s_tokens = s_tokens.get()
# Group into structured example inputs. Examples' ids represent
# mappings to their question, document, and split ids.
examples = []
for qidx in range(len(queries)):
for rel_didx, did in enumerate(all_docids[qidx]):
start, end = didx2sidx[did2didx[did]]
for sidx in range(start, end):
if (len(q_tokens[qidx].words()) > 0 and
len(s_tokens[sidx].words()) > 0):
examples.append({
'id': (qidx, rel_didx, sidx),
'question': q_tokens[qidx].words(),
'qlemma': q_tokens[qidx].lemmas(),
'document': s_tokens[sidx].words(),
'lemma': s_tokens[sidx].lemmas(),
'pos': s_tokens[sidx].pos(),
'ner': s_tokens[sidx].entities(),
})
logger.info('Reading %d paragraphs...' % len(examples))
# Push all examples through the document reader.
# We decode argmax start/end indices asychronously on CPU.
result_handles = []
num_loaders = min(self.max_loaders, math.floor(len(examples) / 1e3))
for batch in self._get_loader(examples, num_loaders):
if candidates or self.fixed_candidates:
batch_cands = []
for ex_id in batch[-1]:
batch_cands.append({
'input': s_tokens[ex_id[2]],
'cands': candidates[ex_id[0]] if candidates else None
})
handle = self.reader.predict(
batch, batch_cands, async_pool=self.processes
)
else:
handle = self.reader.predict(batch, async_pool=self.processes)
result_handles.append((handle, batch[-1], batch[0].size(0)))
# Iterate through the predictions, and maintain priority queues for
# top scored answers for each question in the batch.
queues = [[] for _ in range(len(queries))]
for result, ex_ids, batch_size in result_handles:
s, e, score = result.get()
for i in range(batch_size):
# We take the top prediction per split.
if len(score[i]) > 0:
item = (score[i][0], ex_ids[i], s[i][0], e[i][0])
queue = queues[ex_ids[i][0]]
if len(queue) < top_n:
heapq.heappush(queue, item)
else:
heapq.heappushpop(queue, item)
# Arrange final top prediction data.
all_predictions = []
for queue in queues:
predictions = []
while len(queue) > 0:
score, (qidx, rel_didx, sidx), s, e = heapq.heappop(queue)
prediction = {
'doc_id': all_docids[qidx][rel_didx],
'span': s_tokens[sidx].slice(s, e + 1).untokenize(),
'doc_score': float(all_doc_scores[qidx][rel_didx]),
'span_score': float(score),
}
if return_context:
prediction['context'] = {
'text': s_tokens[sidx].untokenize(),
'start': s_tokens[sidx].offsets()[s][0],
'end': s_tokens[sidx].offsets()[e][1],
}
predictions.append(prediction)
all_predictions.append(predictions[-1::-1])
logger.info('Processed %d queries in %.4f (s)' %
(len(queries), time.time() - t0))
return all_predictions
|