From e2ffa5d9f8bd704843b1f652f188f6d809d86b0b Mon Sep 17 00:00:00 2001 From: Priyanka Dwivedi Date: Wed, 28 Mar 2018 11:02:09 -0400 Subject: [PATCH] Update README.md --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1174d72..00dc6bb 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,8 @@ This repository has the code to run the model my team built for the SQUaD datase ### Running the code -* Please run ./get_started.sh to download the SQuAD dataset and GloVE Vectors -requirements.txt is used by get_started.sh to install requirements.Once the script is done running, you will have a new directory data with the train and dev json files for SQuAD datset +* Please run ```./get_started.sh``` to download the SQuAD dataset and GloVE Vectors +* requirements.txt is used by get_started.sh to install requirements. Once the script is done running, you will have a new directory data with the train and dev json files for SQuAD datset. And another empty folder experiments that will eventually have the results from your experiments. * To run code please run main.py in code. The settings to run BIDAF model are: ``` @@ -23,3 +23,8 @@ python code/main.py --experiment_name=rnet_best --dropout=0.20 --batch_size=20 - * Once you run the models, you will have a new folder by the name experiments which will have the results from your code runs +* To start tensorboard, please run the following commands: +``` +cd experiments # Go to experiments directory +tensorboard --logdir=. --port=5678 # Start TensorBoard +```