awesome work!
#1
by
clem
HF staff
- opened
congrats
Thank you! Super grateful for what huggingface is doing – open-source FTW :D
I use the following database schema:
CREATE TABLE 各省GDP (地区 VARCHAR(128),
_2022年 VARCHAR(128),
_2021年 VARCHAR(128),
_2020年 VARCHAR(128),
_2019年 VARCHAR(128),
_2018年 VARCHAR(128),
_2017年 VARCHAR(128),
_2016年 VARCHAR(128),
_2015年 VARCHAR(128),
_2014年 VARCHAR(128),
_2013年 VARCHAR(128));
My query is : 2020年以来江苏和浙江两省GDP排名是否有变化
Then model generates a SQL:
'''
SELECT 各省GDP._2020年,
各省GFP._2022年
FROM 各省GFP
WHERE 地区 IN ('江苏',
'浙江')
ORDER BY 各省GFP._2020年 NULLS LAST;
'''
Why the table's NAME can't be kept the same as the Schema I given? Should I try a lower temperatures?
In fact, I tested with temperature=0.01, things not any better.
Can someone give a help or suggest?