-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rui Zhang
committed
Dec 1, 2019
1 parent
05ded8f
commit 29a433c
Showing
4 changed files
with
99 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#! /bin/bash | ||
|
||
# 1. preprocess dataset by the following. It will produce data/cosql_data_removefrom/ | ||
|
||
python3 preprocess.py --dataset=cosql --remove_from | ||
|
||
# 2. train and evaluate. | ||
# the result (models, logs, prediction outputs) are saved in $LOGDIR | ||
|
||
GLOVE_PATH="/home/lily/rz268/dialog2sql/word_emb/glove.840B.300d.txt" # you need to change this | ||
LOGDIR="logs_cosql_editsql" | ||
|
||
CUDA_VISIBLE_DEVICES=0 python3 run.py --raw_train_filename="data/cosql_data_removefrom/train.pkl" \ | ||
--raw_validation_filename="data/cosql_data_removefrom/dev.pkl" \ | ||
--database_schema_filename="data/cosql_data_removefrom/tables.json" \ | ||
--embedding_filename=$GLOVE_PATH \ | ||
--data_directory="processed_data_cosql_removefrom" \ | ||
--input_key="utterance" \ | ||
--state_positional_embeddings=1 \ | ||
--discourse_level_lstm=1 \ | ||
--use_utterance_attention=1 \ | ||
--use_previous_query=1 \ | ||
--use_query_attention=1 \ | ||
--use_copy_switch=1 \ | ||
--use_schema_encoder=1 \ | ||
--use_schema_attention=1 \ | ||
--use_encoder_attention=1 \ | ||
--use_bert=1 \ | ||
--bert_type_abb=uS \ | ||
--fine_tune_bert=1 \ | ||
--use_schema_self_attention=1 \ | ||
--use_schema_encoder_2=1 \ | ||
--interaction_level=1 \ | ||
--reweight_batch=1 \ | ||
--freeze=1 \ | ||
--train=1 \ | ||
--logdir=$LOGDIR \ | ||
--evaluate=1 \ | ||
--evaluate_split="valid" \ | ||
--use_predicted_queries=1 | ||
|
||
# 3. get evaluation result | ||
|
||
python3 postprocess_eval.py --dataset=cosql --split=dev --pred_file $LOGDIR/valid_use_predicted_queries_predictions.json --remove_from |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#! /bin/bash | ||
|
||
# 1. preprocess dataset by the following. It will produce data/cosql_data_removefrom/ | ||
|
||
# python3 preprocess.py --dataset=cosql --remove_from | ||
|
||
# 2. train and evaluate. | ||
# the result (models, logs, prediction outputs) are saved in $LOGDIR | ||
|
||
GLOVE_PATH="/home/lily/rz268/dialog2sql/word_emb/glove.840B.300d.txt" # you need to change this | ||
LOGDIR="logs/logs_cosql_editsql" | ||
|
||
CUDA_VISIBLE_DEVICES=0 python3 run.py --raw_train_filename="data/cosql_data_removefrom/train.pkl" \ | ||
--raw_validation_filename="data/cosql_data_removefrom/dev.pkl" \ | ||
--database_schema_filename="data/cosql_data_removefrom/tables.json" \ | ||
--embedding_filename=$GLOVE_PATH \ | ||
--data_directory="processed_data_cosql_removefrom" \ | ||
--input_key="utterance" \ | ||
--state_positional_embeddings=1 \ | ||
--discourse_level_lstm=1 \ | ||
--use_utterance_attention=1 \ | ||
--use_previous_query=1 \ | ||
--use_query_attention=1 \ | ||
--use_copy_switch=1 \ | ||
--use_schema_encoder=1 \ | ||
--use_schema_attention=1 \ | ||
--use_encoder_attention=1 \ | ||
--use_bert=1 \ | ||
--bert_type_abb=uS \ | ||
--fine_tune_bert=1 \ | ||
--use_schema_self_attention=1 \ | ||
--use_schema_encoder_2=1 \ | ||
--interaction_level=1 \ | ||
--reweight_batch=1 \ | ||
--freeze=1 \ | ||
--logdir=$LOGDIR \ | ||
--evaluate=1 \ | ||
--evaluate_split="valid" \ | ||
--use_predicted_queries=1 \ | ||
--save_file="$LOGDIR/save_12_cosql_editsql" | ||
|
||
# 3. get evaluation result | ||
|
||
python3 postprocess_eval.py --dataset=cosql --split=dev --pred_file $LOGDIR/valid_use_predicted_queries_predictions.json --remove_from |