Skip to content

gsarti/covid-papers-browser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

79 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Covid-19 Semantic Browser: Browse Covid-19 & SARS-CoV-2 Scientific Papers with Transformers ๐Ÿฆ  ๐Ÿ“–

Covid-19 Semantic Browser is an interactive experimental tool leveraging a state-of-the-art language model to search relevant content inside the COVID-19 Open Research Dataset (CORD-19) recently published by the White House and its research partners. The dataset contains over 44,000 scholarly articles about COVID-19, SARS-CoV-2 and related coronaviruses.

Various models already fine-tuned on Natural Language Inference are available to perform the search:

All models are trained on SNLI [3] and MultiNLI [4] using the sentence-transformers library [5] to produce universal sentence embeddings [6]. Embeddings are subsequently used to perform semantic search on CORD-19.

Currently supported operations are:

  • Browse paper abstract with interactive queries.

  • Reproduce SciBERT-NLI, BioBERT-NLI and CovidBERT-NLI training results.

Setup

Python 3.6 or higher is required to run the code. First, install the required libraries with pip, then download the en_core_web_sm language pack for spaCy and data for NLTK:

pip install -r requirements.txt
python -m spacy download en_core_web_sm
python -m nltk.downloader punkt

Using the Browser

First of all, download a model fine-tuned on NLI from HuggingFace's cloud repository.

python scripts/download_model.py --model scibert-nli

Second, download the data from the Kaggle challenge page and place it in the data folder.

Finally, simply run:

python scripts/interactive_search.py

to enter the interactive demo. Using a GPU is suggested since the creation of the embeddings for the entire corpus might be time-consuming otherwise. Both the corpus and the embeddings are cached on disk after the first execution of the script, and execution is really fast after embeddings are computed.

Use the interactive demo as follows:

Demo GIF

Reproducing Training Results for Transformers

First, download a pretrained model from HuggingFace's cloud repository.

python scripts/download_model.py --model scibert

Second, download the NLI datasets used for training and the STS dataset used for testing.

python scripts/get_finetuning_data.py

Finally, run the finetuning script by adjusting the parameters depending on the model you intend to train (default is scibert-nli).

python scripts/finetune_nli.py

The model will be evaluated against the test portion of the Semantic Text Similarity (STS) benchmark dataset at the end of training. Please refer to my model cards for additional references on parameter values.

References

[1] Beltagy et al. 2019, "SciBERT: Pretrained Language Model for Scientific Text"

[2] Lee et al. 2020, "BioBERT: a pre-trained biomedical language representation model for biomedical text mining"

[3] Bowman et al. 2015, "A large annotated corpus for learning natural language inference"

[4] Adina et al. 2018, "A Broad-Coverage Challenge Corpus for Sentence Understanding through Inference"

[5] Reimers et al. 2019, "Sentence-BERT: Sentence Embeddings using Siamese BERT-Networks"

[6] As shown in Conneau et al. 2017, "Supervised Learning of Universal Sentence Representations from Natural Language Inference Data"