├── README.md ├── generate_wikisql_augment.py ├── get_data_wikisql.py ├── merge_jsons.py ├── models ├── __init__.py ├── agg_predictor.py ├── andor_predictor.py ├── col_predictor.py ├── desasc_limit_predictor.py ├── having_predictor.py ├── keyword_predictor.py ├── multisql_predictor.py ├── net_utils.py ├── op_predictor.py └── root_teminal_predictor.py ├── preprocess_train_dev_data.py ├── process_sql.py ├── requirements.txt ├── supermodel.py ├── test.py ├── test_gen.sh ├── train.py ├── train_all.sh ├── utils.py └── word_embedding.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/README.md -------------------------------------------------------------------------------- /generate_wikisql_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/generate_wikisql_augment.py -------------------------------------------------------------------------------- /get_data_wikisql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/get_data_wikisql.py -------------------------------------------------------------------------------- /merge_jsons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/merge_jsons.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/agg_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/models/agg_predictor.py -------------------------------------------------------------------------------- /models/andor_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/models/andor_predictor.py -------------------------------------------------------------------------------- /models/col_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/models/col_predictor.py -------------------------------------------------------------------------------- /models/desasc_limit_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/models/desasc_limit_predictor.py -------------------------------------------------------------------------------- /models/having_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/models/having_predictor.py -------------------------------------------------------------------------------- /models/keyword_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/models/keyword_predictor.py -------------------------------------------------------------------------------- /models/multisql_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/models/multisql_predictor.py -------------------------------------------------------------------------------- /models/net_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/models/net_utils.py -------------------------------------------------------------------------------- /models/op_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/models/op_predictor.py -------------------------------------------------------------------------------- /models/root_teminal_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/models/root_teminal_predictor.py -------------------------------------------------------------------------------- /preprocess_train_dev_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/preprocess_train_dev_data.py -------------------------------------------------------------------------------- /process_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/process_sql.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/requirements.txt -------------------------------------------------------------------------------- /supermodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/supermodel.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/test.py -------------------------------------------------------------------------------- /test_gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/test_gen.sh -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/train.py -------------------------------------------------------------------------------- /train_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/train_all.sh -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/utils.py -------------------------------------------------------------------------------- /word_embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/taoyds/syntaxSQL/HEAD/word_embedding.py --------------------------------------------------------------------------------