BorealisAI / DT-Fixup

Optimizing Deeper Transformers on Small Datasets https://arxiv.org/abs/2012.15355
15 stars 10 forks source link

the value in SQL #2

Closed Gyyz closed 3 years ago

Gyyz commented 3 years ago

Hi, thanks for the sharing code.

I am a little confused that the predicted results don't have a specified column value, is there any parameter that restricts the model?

For example, the generated SQL below:

SELECT students.cell_mobile_number FROM students WHERE students.first_name = "value" and students.last_name = "value"

What is the parameter if I want to get a specified column value rather than a terminal symbol?

Thanks.

billy-inn commented 3 years ago

This codebase doesn't support value prediction currently, as value is ignored in the Spider exact match evaluation.

Gyyz commented 3 years ago

Thanks for your reply.