Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
priya-dwivedi authored Mar 28, 2018
1 parent 66c39d6 commit e2ffa5d
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
```
Expand All @@ -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
```

0 comments on commit e2ffa5d

Please sign in to comment.