cedr icon indicating copy to clipboard operation
cedr copied to clipboard

Code for CEDR: Contextualized Embeddings for Document Ranking, accepted at SIGIR 2019.

Results 15 cedr issues
Sort by recently updated
recently updated
newest added

First of all, thanks a lot for your interesting work on CEDR and for the code in this repository. I downloaded the Vanilla BERT and CEDR-KNRM checkpoints from #18 and...

result = [] for item in items: if len(item) < l: item = [1. for _ in item] + ([0.] * (l - len(item))) if len(item) >= l: item =...

I can't find anything about the mean average precison of your new system (CEDR). Am I missing something or did you really not measured it? Since it's the most common...

Hi, I have noticed that in _rerank.py_ you call _train.run_model_ giving 5 arguments. However _train.run_model_ is only defined with 4arguments. It seems like the _out_path_ should be removed from this...