Home

Awesome

Covid19_Search_Tool

Active colab notebook : Resources for working with CORD19 (Novel Coronovirus 2019) NLP dataset -

Getting started

Via Docker

The easiest way to run this package is with Docker.

  1. Install Docker

  2. Pull the Docker image from Docker Hub:

     docker pull rccreager/covid19-search-tool:Covid19_Search_Tool_03-25-20 
    
  3. Run the Docker image:

     docker run -it -p 8888:8888 rccreager/covid19-search-tool:Covid19_Search_Tool_03-25-20 
    
  4. (Optional) Start Jupyter from inside the docker image:

     jupyter notebook --ip 0.0.0.0 --no-browser --allow-root
    
  5. (Optional) Open Jupyter on your local machine by copy-pasting the printed address into a web brower. It will look something like:

     http://127.0.0.1:8888/?token=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
    

Building Yourself:

conda create --name cord19 python=3.6.9
source activate cord19
pip install -r requirements.txt
~/.profile
python -m nltk.downloader punkt
python -m nltk.downloader stopwords
python -m nltk.downloader wordnet
wget https://storage.googleapis.com/bert_models/2018_10_18/uncased_L-12_H-768_A-12.zip
unzip uncased_L-12_H-768_A-12.zip
pip install bert-serving-server==1.10 --no-deps
rm uncased_L-12_H-768_A-12.zip

Interactive visualization of COVID-19 related academic articles

Alt text TSNE Visualization of COVID-19 related academic articles

Custom CORD19 NLP Search engine

Alt text

Plan of action

Current work based on: