├── LICENSE ├── README.md ├── Triplet.py ├── augment.py ├── ensemble.py ├── eval.py ├── generate_spider.py ├── ir ├── README ├── __init__.py ├── data_preprocess.py ├── graph.py ├── irnet_utils.py ├── lf.py ├── preprocess_utils.py ├── process_sql.py ├── semQL.py ├── sem_utils.py ├── spider_parse_one.py └── sql2IR.py ├── metamorphic_eval.py ├── model └── irnet.model ├── nlp_utils.py ├── requirements.txt ├── result ├── irnet-as.txt └── irnet-base.txt ├── sampling ├── adaptive_sampling.py ├── random_sampling.py └── stratified_sampling.py ├── trans.py ├── transformations ├── __init__.py ├── conjunction_order_transformation.py ├── prefix_transformation.py ├── schema_column_mutation.py ├── schema_structual_transformation.py ├── trans_utils.py └── underconstrained_synonym_transformation.py └── user-study └── UserStudy.pdf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/README.md -------------------------------------------------------------------------------- /Triplet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/Triplet.py -------------------------------------------------------------------------------- /augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/augment.py -------------------------------------------------------------------------------- /ensemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/ensemble.py -------------------------------------------------------------------------------- /eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/eval.py -------------------------------------------------------------------------------- /generate_spider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/generate_spider.py -------------------------------------------------------------------------------- /ir/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/ir/README -------------------------------------------------------------------------------- /ir/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/ir/__init__.py -------------------------------------------------------------------------------- /ir/data_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/ir/data_preprocess.py -------------------------------------------------------------------------------- /ir/graph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/ir/graph.py -------------------------------------------------------------------------------- /ir/irnet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/ir/irnet_utils.py -------------------------------------------------------------------------------- /ir/lf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/ir/lf.py -------------------------------------------------------------------------------- /ir/preprocess_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/ir/preprocess_utils.py -------------------------------------------------------------------------------- /ir/process_sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/ir/process_sql.py -------------------------------------------------------------------------------- /ir/semQL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/ir/semQL.py -------------------------------------------------------------------------------- /ir/sem_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/ir/sem_utils.py -------------------------------------------------------------------------------- /ir/spider_parse_one.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/ir/spider_parse_one.py -------------------------------------------------------------------------------- /ir/sql2IR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/ir/sql2IR.py -------------------------------------------------------------------------------- /metamorphic_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/metamorphic_eval.py -------------------------------------------------------------------------------- /model/irnet.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/model/irnet.model -------------------------------------------------------------------------------- /nlp_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/nlp_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/requirements.txt -------------------------------------------------------------------------------- /result/irnet-as.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/result/irnet-as.txt -------------------------------------------------------------------------------- /result/irnet-base.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/result/irnet-base.txt -------------------------------------------------------------------------------- /sampling/adaptive_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/sampling/adaptive_sampling.py -------------------------------------------------------------------------------- /sampling/random_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/sampling/random_sampling.py -------------------------------------------------------------------------------- /sampling/stratified_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/sampling/stratified_sampling.py -------------------------------------------------------------------------------- /trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/trans.py -------------------------------------------------------------------------------- /transformations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /transformations/conjunction_order_transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/transformations/conjunction_order_transformation.py -------------------------------------------------------------------------------- /transformations/prefix_transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/transformations/prefix_transformation.py -------------------------------------------------------------------------------- /transformations/schema_column_mutation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/transformations/schema_column_mutation.py -------------------------------------------------------------------------------- /transformations/schema_structual_transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/transformations/schema_structual_transformation.py -------------------------------------------------------------------------------- /transformations/trans_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/transformations/trans_utils.py -------------------------------------------------------------------------------- /transformations/underconstrained_synonym_transformation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/transformations/underconstrained_synonym_transformation.py -------------------------------------------------------------------------------- /user-study/UserStudy.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MTTeql/MT-Teql/HEAD/user-study/UserStudy.pdf --------------------------------------------------------------------------------