Skip to content

Update README.md #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ Download the pretrained glove embedding from [here](https://github.com/stanfordn
bash download_glove.sh
```

## Extract the glove embedding for training.
## Extract the glove embeddings for training.
Run the following command to process the pretrained glove embedding for training the word embedding:
```bash
python extract_vocab.py
```

## Train
## How To Train ?
The training script is `train.py`. To see the detailed parameters for running:
```bash
python train.py -h
Expand Down Expand Up @@ -68,7 +68,7 @@ Train a Seq2SQL model with Reinforcement Learning after pretraining
python train.py --baseline --dataset 1 --rl
```

## Test
## How To Test ?
The script for evaluation on the dev split and test split. The parameters for evaluation is roughly the same as the one used for training. For example, the commands for evaluating the models from above commands are:

Test a trained SQLNet model with column attention
Expand Down