Zongmeng Zhang

Results 3 issues of Zongmeng Zhang

The link for "Localizing Natural Language in Videos - Chen et al, AAAI 2019." is wrong. It should be "https://pdfs.semanticscholar.org/631d/21ee2e0de4227be1dfe000006acf1e0fe783.pdf" rather than that link to "Read Watch and Move Reinforcement...

I was doing retrieval with the prebuilt index `wikipedia-dpr-multi-bf`, but I found it will return different retrieval list with different `k`. Here is an example: ```python from pyserini.search.faiss import FaissSearcher...

In multiprocessing, log file may be created before other processes checking if `len(os.listdir(training_args.output_dir)) > 0`, and thus a `ValueError` will be raised. Synchronizing between processes using `torch.distributed.barrier()` tackles this problem.