-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
52 lines (52 loc) · 1.2 KB
/
app.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name":"耶鲁文本转SQL",
"author":"未半",
"description":"由11名耶鲁学生注释的大规模复杂和跨域语义解析和文本到SQL数据集。Spider挑战的目标是为跨域数据库开发自然语言接口。它由200个数据库中的10,181个问题和5,693个唯一复杂SQL查询组成,其中多个表覆盖138个不同的域。",
"topic":"自然语言处理,文本生成",
"data":{
"source":[
{
"id":"TextSQL",
"name":"耶鲁文本转SQL",
"source":"https://yale-lily.github.io/spider"
}
]
},
"model":{
"input":{
"columns":[
{
"name":"sql_data",
"type":"string",
"sample":"文本"
},
{
"name":"table_data",
"type":"string",
"sample":"文本"
}
]
},
"output":{
"columns":[
{
"name":"sql",
"type":"string",
"sample":"文本"
}
]
}
},
"project":{
"id":"TextSQL",
"language":"Python3",
"algorithm":"SQLNet",
"framework":"pytorch",
"train":{
"file":"main.py"
},
"prediction":{
"file":"prediction.py"
}
}
}