CLLGSep 14, 2018

SQL-to-Text Generation with Graph-to-Sequence Model

arXiv:1809.05255v21125 citations
AI Analysis

This work improves text generation from SQL queries for database users and NLP applications, but it is incremental as it builds on existing graph-based methods.

The paper tackled SQL-to-text generation by representing SQL queries as directed graphs and using a graph-to-sequence model to encode structural information, achieving state-of-the-art performance on WikiSQL and Stackoverflow datasets.

Previous work approaches the SQL-to-text generation task using vanilla Seq2Seq models, which may not fully capture the inherent graph-structured information in SQL query. In this paper, we first introduce a strategy to represent the SQL query as a directed graph and then employ a graph-to-sequence model to encode the global structure information into node embeddings. This model can effectively learn the correlation between the SQL query pattern and its interpretation. Experimental results on the WikiSQL dataset and Stackoverflow dataset show that our model significantly outperforms the Seq2Seq and Tree2Seq baselines, achieving the state-of-the-art performance.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes