xiaofengalg commited on
Commit
a8e8d70
1 Parent(s): b1a85eb
app.py CHANGED
@@ -40,20 +40,47 @@ def tableqa(input_question, history=""):
40
 
41
  if response["code"] == 200:
42
  df_value = response["result"]["select_df"]
43
- df = {"data":df_value["rows"],"headers":df_value["header_name"]}
44
  return [df, response["result"]["sql_string"], response["result"]["sql_query"], response["result"]["history"], response["result"]["query_result"]]
45
  else:
46
  return ["1", "2", "3", "4",]
47
 
48
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
49
  # iface = gr.Interface(fn=greet, inputs="text", outputs=["输出sql语句","输出可执行sql语句","执行结果"])
50
  iface = gr.Interface(fn=tableqa, inputs=[gr.Textbox(label="input_question", info="请输入想要查询的问题."),
51
  gr.Textbox(label="history sql", info="上下文对话历史信息.")],
52
- outputs=[gr.DataFrame(label="索引到的数据库"),
53
- gr.Textbox(label="输出sql语句"),
54
- gr.Textbox(label="输出可执行sql语句"),
55
- gr.Textbox(label="多轮对话历史sql"),
56
- gr.Textbox(label="SQL执行结果")]
 
 
 
 
 
 
 
 
57
  )
58
 
59
- iface.launch(enable_queue=False, server_name="0.0.0.0", server_port=9176, debug=True)
 
 
 
 
 
40
 
41
  if response["code"] == 200:
42
  df_value = response["result"]["select_df"]
43
+ df = {"data": df_value["rows"], "headers": df_value["header_name"]}
44
  return [df, response["result"]["sql_string"], response["result"]["sql_query"], response["result"]["history"], response["result"]["query_result"]]
45
  else:
46
  return ["1", "2", "3", "4",]
47
 
48
 
49
+ example_iface = [
50
+ ["长江流域的小型水库的库容总量是多少?", ""],
51
+ ["那平均值是多少?", "{'agg': [5], 'cond_conn_op': 1, 'conds': [[3, 2, '小型'], [4, 2, '长江']], 'from': ['reservoir'], 'sel': [2]}"],
52
+ ["那水库的名称呢?", "{'agg': [1], 'cond_conn_op': 1, 'conds': [[3, 2, '小型'], [4, 2, '长江']], 'from': ['reservoir'], 'sel': [2]}"],
53
+ ["汕尾市的水库有吗", "{'agg': [0], 'cond_conn_op': 1, 'conds': [[3, 2, '小型'], [4, 2, '长江']], 'from': ['reservoir'], 'sel': [0]}"],
54
+ ["", ""],
55
+ ["上个月收益率超过3的有几个基金?", ""],
56
+ ["这是哪只基金呢?并且它什么类型的呢?", "{'agg': [4], 'cond_conn_op': 0, 'conds': [[5, 0, '3']], 'from': ['fund'], 'sel': [1]}"],
57
+ ["", ""],
58
+ ["有哪些型号的SUV油耗高于8?", ""],
59
+ ["他们是多大排量的", "{'agg': [0], 'cond_conn_op': 1, 'conds': [[1, 2, 'suv'], [2, 0, '8']], 'from': ['car'], 'sel': [0]}"],
60
+ ["", ""],
61
+ ["本部博士生中平均身高是多少?", ""],
62
+ ["他们是什么专业的?", "{'agg': [1], 'cond_conn_op': 1, 'conds': [[2, 2, '博士'], [7, 2, '本部']], 'from': ['student'], 'sel': [5]}"]
63
+ ]
64
  # iface = gr.Interface(fn=greet, inputs="text", outputs=["输出sql语句","输出可执行sql语句","执行结果"])
65
  iface = gr.Interface(fn=tableqa, inputs=[gr.Textbox(label="input_question", info="请输入想要查询的问题."),
66
  gr.Textbox(label="history sql", info="上下文对话历史信息.")],
67
+ outputs=[gr.DataFrame(label="索引到的数据库"),
68
+ gr.Textbox(label="输出sql语句"),
69
+ gr.Textbox(label="输出可执行sql语句"),
70
+ gr.Textbox(label="多轮对话历史sql"),
71
+ gr.Textbox(label="SQL执行结果")],
72
+ examples=example_iface,
73
+ examples_per_page=len(example_iface),
74
+ allow_flagging="auto",
75
+ cache_examples=True,
76
+ description="<p> \
77
+ Choose an example below &#128293; &#128293; &#128293; \
78
+ Or, give question by yourself: <br>\
79
+ </p>",
80
  )
81
 
82
+ title = "TableChat: Chat Model deployment on Table <br>"
83
+
84
+ demo = gr.TabbedInterface([iface], ['TableChat_V0'], title=title)
85
+ # iface.launch(enable_queue=False, server_name="0.0.0.0", server_port=9176, debug=True)
86
+ demo.launch(enable_queue=False, server_name="0.0.0.0", server_port=9176, share=True)
flagged/log.csv ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ input_question,history sql,索引到的数据库,输出sql语句,输出可执行sql语句,多轮对话历史sql,SQL执行结果,flag,username,timestamp
2
+ ,,/home/shixiaofeng/code/huggingface/TableChat/flagged/索引到的数据库/tmpmhiwdvqv.json,,,,,,,2023-05-05 13:18:27.128837
3
+ ,,/home/shixiaofeng/code/huggingface/TableChat/flagged/索引到的数据库/tmp9q7h5h4f.json,,,,,,,2023-05-05 13:18:28.965435
4
+ 长江流域的小型水库的库容总量是多少?,,,,2023-05-05 14:22:35.474955
5
+ 那平均值是多少?,"{'agg': [5], 'cond_conn_op': 1, 'conds': [[3, 2, '小型'], [4, 2, '长江']], 'from': ['reservoir'], 'sel': [2]}",,,2023-05-05 14:22:41.520330
6
+ 那水库的名称呢?,"{'agg': [1], 'cond_conn_op': 1, 'conds': [[3, 2, '小型'], [4, 2, '长江']], 'from': ['reservoir'], 'sel': [2]}",,,2023-05-05 14:22:45.974679
7
+ 汕尾市的水库有吗,"{'agg': [0], 'cond_conn_op': 1, 'conds': [[3, 2, '小型'], [4, 2, '长江']], 'from': ['reservoir'], 'sel': [0]}",,,2023-05-05 14:22:49.911482
8
+ 上个月收益率超过3的有几个基金?,,,,2023-05-05 14:22:54.216359
9
+ 这是哪只基金呢?并且它什么类型的呢?,"{'agg': [4], 'cond_conn_op': 0, 'conds': [[5, 0, '3']], 'from': ['fund'], 'sel': [1]}",,,2023-05-05 14:23:00.371927
10
+ 有哪些型号的SUV油耗高于8?,,,,2023-05-05 14:23:04.868613
11
+ 他们是多大排量的,"{'agg': [0], 'cond_conn_op': 1, 'conds': [[1, 2, 'suv'], [2, 0, '8']], 'from': ['car'], 'sel': [0]}",,,2023-05-05 14:23:08.870131
12
+ 本部博士生中平均身高是多少?,,,,2023-05-05 14:23:17.272155
13
+ 他们是什么专业的?,"{'agg': [1], 'cond_conn_op': 1, 'conds': [[2, 2, '博士'], [7, 2, '本部']], 'from': ['student'], 'sel': [5]}",,,2023-05-05 14:23:21.502317
flagged/索引到的数据库/tmp9q7h5h4f.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [["", "", ""]], "headers": [1, 2, 3]}
flagged/索引到的数据库/tmpmhiwdvqv.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [["", "", ""]], "headers": [1, 2, 3]}
gradio_cached_examples/19/log.csv ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 索引到的数据库,输出sql语句,输出可执行sql语句,多轮对话历史sql,SQL执行结果,flag,username,timestamp
2
+ /home/shixiaofeng/code/huggingface/TableChat/gradio_cached_examples/19/索引到的数据库/tmpyn704fxk.json,"SELECT SUM(库容) FROM 水库 WHERE ( 工程规模 == ""小型"" ) AND ( 所在流域 == ""长江"" )","SELECT SUM(`reservoir`.`capacity`) FROM `reservoir` WHERE ( `reservoir`.`scale` == ""小型"" ) AND ( `reservoir`.`basin` == ""长江"" )","{'agg': [5], 'cond_conn_op': 1, 'conds': [[3, 2, '小型'], [4, 2, '长江']], 'from': ['reservoir'], 'sel': [2]}",[[34]],,,2023-05-05 14:20:03.083268
3
+ /home/shixiaofeng/code/huggingface/TableChat/gradio_cached_examples/19/索引到的数据库/tmp4j4k4dey.json,"SELECT AVG(库容) FROM 水库 WHERE ( 工程规模 == ""小型"" ) AND ( 所在流域 == ""长江"" )","SELECT AVG(`reservoir`.`capacity`) FROM `reservoir` WHERE ( `reservoir`.`scale` == ""小型"" ) AND ( `reservoir`.`basin` == ""长江"" )","{'agg': [1], 'cond_conn_op': 1, 'conds': [[3, 2, '小型'], [4, 2, '长江']], 'from': ['reservoir'], 'sel': [2]}",[[17.0]],,,2023-05-05 14:20:03.481537
4
+ /home/shixiaofeng/code/huggingface/TableChat/gradio_cached_examples/19/索引到的数据库/tmpnpvwpij7.json,"SELECT 水库名称 FROM 水库 WHERE ( 工程规模 == ""小型"" ) AND ( 所在流域 == ""长江"" )","SELECT `reservoir`.`name` FROM `reservoir` WHERE ( `reservoir`.`scale` == ""小型"" ) AND ( `reservoir`.`basin` == ""长江"" )","{'agg': [0], 'cond_conn_op': 1, 'conds': [[3, 2, '小型'], [4, 2, '长江']], 'from': ['reservoir'], 'sel': [0]}","[['上银坑水库'], ['么塘水库']]",,,2023-05-05 14:20:04.781840
5
+ /home/shixiaofeng/code/huggingface/TableChat/gradio_cached_examples/19/索引到的数据库/tmp3kfjru9z.json,"SELECT 水库名称 FROM 水库 WHERE ( 工程规模 == ""小型"" ) AND ( 所在流域 == ""长江"" ) AND ( 市 == ""汕尾市"" )","SELECT `reservoir`.`name` FROM `reservoir` WHERE ( `reservoir`.`scale` == ""小型"" ) AND ( `reservoir`.`basin` == ""长江"" ) AND ( `reservoir`.`city` == ""汕尾市"" )","{'agg': [0], 'cond_conn_op': 1, 'conds': [[3, 2, '小型'], [4, 2, '长江'], [6, 2, '汕尾市']], 'from': ['reservoir'], 'sel': [0]}",[['上银坑水库']],,,2023-05-05 14:20:05.178873
6
+ /home/shixiaofeng/code/huggingface/TableChat/gradio_cached_examples/19/索引到的数据库/tmp1mxvfmcu.json,SELECT 空列 FROM 基金,SELECT `fund`.`null` FROM `fund`,"{'agg': [0], 'cond_conn_op': 0, 'conds': [[8, 2, 'Nulll']], 'from': ['fund'], 'sel': [8]}",[],,,2023-05-05 14:20:06.877678
7
+ /home/shixiaofeng/code/huggingface/TableChat/gradio_cached_examples/19/索引到的数据库/tmpsxe8rwcs.json,"SELECT COUNT(DISTINCT 基金名称) FROM 基金 WHERE ( 月收益率 > ""3"" )","SELECT COUNT(DISTINCT `fund`.`name`) FROM `fund` WHERE ( `fund`.`last_month_revenue` > ""3"" )","{'agg': [4], 'cond_conn_op': 0, 'conds': [[5, 0, '3']], 'from': ['fund'], 'sel': [1]}",[[1]],,,2023-05-05 14:20:08.377437
8
+ /home/shixiaofeng/code/huggingface/TableChat/gradio_cached_examples/19/索引到的数据库/tmpsykw1yw4.json,"SELECT 基金名称, 基金类型 FROM 基金 WHERE ( 月收益率 > ""3"" )","SELECT `fund`.`name`, `fund`.`type` FROM `fund` WHERE ( `fund`.`last_month_revenue` > ""3"" )","{'agg': [0, 0], 'cond_conn_op': 0, 'conds': [[5, 0, '3']], 'from': ['fund'], 'sel': [1, 2]}","[['医药健康', '股票型']]",,,2023-05-05 14:20:09.888855
9
+ /home/shixiaofeng/code/huggingface/TableChat/gradio_cached_examples/19/索引到的数据库/tmpudoy7_49.json,SELECT 空列 FROM 基金,SELECT `fund`.`null` FROM `fund`,"{'agg': [0], 'cond_conn_op': 0, 'conds': [[8, 2, 'Nulll']], 'from': ['fund'], 'sel': [8]}",[],,,2023-05-05 14:20:10.983109
10
+ /home/shixiaofeng/code/huggingface/TableChat/gradio_cached_examples/19/索引到的数据库/tmpbu3yavq7.json,"SELECT 产品名称 FROM 汽车 WHERE ( 汽车类型 == ""suv"" ) AND ( 综合耗油量 > ""8"" )","SELECT `car`.`model` FROM `car` WHERE ( `car`.`type` == ""suv"" ) AND ( `car`.`fuel` > ""8"" )","{'agg': [0], 'cond_conn_op': 1, 'conds': [[1, 2, 'suv'], [2, 0, '8']], 'from': ['car'], 'sel': [0]}","[['glc260'], ['gls600']]",,,2023-05-05 14:20:15.774447
11
+ /home/shixiaofeng/code/huggingface/TableChat/gradio_cached_examples/19/索引到的数据库/tmp81wmpxtd.json,"SELECT 排量 FROM 汽车 WHERE ( 汽车类型 == ""suv"" ) AND ( 综合耗油量 > ""8"" )","SELECT `car`.`displacement` FROM `car` WHERE ( `car`.`type` == ""suv"" ) AND ( `car`.`fuel` > ""8"" )","{'agg': [0], 'cond_conn_op': 1, 'conds': [[1, 2, 'suv'], [2, 0, '8']], 'from': ['car'], 'sel': [3]}","[[1991], [3982]]",,,2023-05-05 14:20:18.879015
12
+ /home/shixiaofeng/code/huggingface/TableChat/gradio_cached_examples/19/索引到的数据库/tmplk0my6tm.json,SELECT 空列 FROM 基金,SELECT `fund`.`null` FROM `fund`,"{'agg': [0], 'cond_conn_op': 0, 'conds': [[8, 2, 'Nulll']], 'from': ['fund'], 'sel': [8]}",[],,,2023-05-05 14:20:19.773413
13
+ /home/shixiaofeng/code/huggingface/TableChat/gradio_cached_examples/19/索引到的数据库/tmpkwc_qoiq.json,"SELECT AVG(身高) FROM 学��信息 WHERE ( 学位 == ""博士"" ) AND ( 校区 == ""本部"" )","SELECT AVG(`student`.`height`) FROM `student` WHERE ( `student`.`degree` == ""博士"" ) AND ( `student`.`campus` == ""本部"" )","{'agg': [1], 'cond_conn_op': 1, 'conds': [[2, 2, '博士'], [7, 2, '本部']], 'from': ['student'], 'sel': [5]}",[[165.5]],,,2023-05-05 14:20:20.677237
14
+ /home/shixiaofeng/code/huggingface/TableChat/gradio_cached_examples/19/索引到的数据库/tmplytfiry_.json,"SELECT 专业名称 FROM 学生信息 WHERE ( 学位 == ""博士"" ) AND ( 校区 == ""本部"" )","SELECT `student`.`major` FROM `student` WHERE ( `student`.`degree` == ""博士"" ) AND ( `student`.`campus` == ""本部"" )","{'agg': [0], 'cond_conn_op': 1, 'conds': [[2, 2, '博士'], [7, 2, '本部']], 'from': ['student'], 'sel': [3]}","[['计算机'], ['生物']]",,,2023-05-05 14:20:21.596978
gradio_cached_examples/19/索引到的数据库/tmp1mxvfmcu.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [["512843", "\u4e2d\u8bc1\u6d88\u8d39", "\u6307\u6570\u578b", "3.0135", "\u4e2d\u98ce\u9669", "2.94", "66.36", "66.53"], ["125303", "\u533b\u836f\u5065\u5eb7", "\u80a1\u7968\u578b", "1.2778", "\u4e2d\u98ce\u9669", "4.97", "46.34", "64.01"], ["503459", "\u6218\u7565\u6df7\u5408", "\u6df7\u5408\u578b", "1.0566", "\u4e2d\u98ce\u9669", "0.21", "4.08", "3.62"], ["2115", "\u5982\u610f\u5b9d", "\u503a\u5238\u578b", "1.125", "\u4e2d\u4f4e\u98ce\u9669", "0.13", "3.15", "2.71"], ["85643", "\u7406\u8d22\u5b9d", "\u7406\u8d22\u578b", "1", "\u4f4e\u98ce\u9669", "0.24", "2.92", "2.59"], ["23459", "\u8d27\u5e01", "\u8d27\u5e01\u578b", "1", "\u4f4e\u98ce\u9669", "0.22", "2.84", "2.49"]], "headers": ["\u57fa\u91d1\u4ee3\u7801", "\u57fa\u91d1\u540d\u79f0", "\u57fa\u91d1\u7c7b\u578b", "\u51c0\u503c", "\u98ce\u9669\u7b49\u7ea7", "\u6708\u6536\u76ca\u7387", "\u53bb\u5e74\u5e74\u6536\u76ca\u7387", "\u4eca\u5e74\u5e74\u6536\u76ca\u7387"]}
gradio_cached_examples/19/索引到的数据库/tmp3kfjru9z.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [["\u4e0a\u94f6\u5751\u6c34\u5e93", "1960", "2.0", "\u5c0f\u578b", "\u957f\u6c5f", "\u5e7f\u4e1c", "\u6c55\u5c3e\u5e02", "\u9646\u4e30\u53bf"], ["\u7281\u5858\u6c34\u5e93", "1951", "12.0", "\u5c0f\u578b", "\u73e0\u6c5f", "\u5e7f\u4e1c", "\u6cb3\u6e90\u5e02", "\u548c\u5e73\u53bf"], ["\u4e48\u5858\u6c34\u5e93", "1956", "32.0", "\u5c0f\u578b", "\u957f\u6c5f", "\u5e7f\u897f", "\u68a7\u5dde\u5e02", "\u85e4\u53bf"], ["\u7405\u51b2\u6c34\u5e93", "1970", "18.0", "\u4e2d\u578b", "\u9ec4\u6cb3", "\u5e7f\u897f", "\u68a7\u5dde\u5e02", "\u5c91\u6eaa\u5e02"], ["\u4e0b\u6865\u6c34\u5e93", "2005", "28.0", "\u4e2d\u578b", "\u957f\u6c5f", "\u5e7f\u897f", "\u6cb3\u6c60\u5e02", "\u91d1\u57ce\u6c5f\u533a"], ["\u767e\u516d\u541e\u6c34\u5e93", "1958", "11.0", "\u5c0f\u578b", "\u73e0\u6c5f", "\u5e7f\u897f", "\u9632\u57ce\u6e2f\u5e02", "\u4e0a\u601d\u53bf"], ["\u6df1\u9f99\u6c34\u5e93", "1959", "19.0", "\u4e2d\u578b", "\u73e0\u6c5f", "\u5e7f\u897f", "\u94a6\u5dde\u5e02", "\u94a6\u5357\u533a"], ["\u5b66\u6597\u5858\u6c34\u5e93", "1956", "37.0", "\u5c0f\u578b", "\u73e0\u6c5f", "\u5e7f\u897f", "\u8d35\u6e2f\u5e02", "\u8983\u5858\u533a"]], "headers": ["\u6c34\u5e93\u540d\u79f0", "\u5efa\u6210\u65f6\u95f4", "\u5e93\u5bb9", "\u5de5\u7a0b\u89c4\u6a21", "\u6240\u5728\u6d41\u57df", "\u7701", "\u5e02", "\u53bf"]}
gradio_cached_examples/19/索引到的数据库/tmp4j4k4dey.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [["\u4e0a\u94f6\u5751\u6c34\u5e93", "1960", "2.0", "\u5c0f\u578b", "\u957f\u6c5f", "\u5e7f\u4e1c", "\u6c55\u5c3e\u5e02", "\u9646\u4e30\u53bf"], ["\u7281\u5858\u6c34\u5e93", "1951", "12.0", "\u5c0f\u578b", "\u73e0\u6c5f", "\u5e7f\u4e1c", "\u6cb3\u6e90\u5e02", "\u548c\u5e73\u53bf"], ["\u4e48\u5858\u6c34\u5e93", "1956", "32.0", "\u5c0f\u578b", "\u957f\u6c5f", "\u5e7f\u897f", "\u68a7\u5dde\u5e02", "\u85e4\u53bf"], ["\u7405\u51b2\u6c34\u5e93", "1970", "18.0", "\u4e2d\u578b", "\u9ec4\u6cb3", "\u5e7f\u897f", "\u68a7\u5dde\u5e02", "\u5c91\u6eaa\u5e02"], ["\u4e0b\u6865\u6c34\u5e93", "2005", "28.0", "\u4e2d\u578b", "\u957f\u6c5f", "\u5e7f\u897f", "\u6cb3\u6c60\u5e02", "\u91d1\u57ce\u6c5f\u533a"], ["\u767e\u516d\u541e\u6c34\u5e93", "1958", "11.0", "\u5c0f\u578b", "\u73e0\u6c5f", "\u5e7f\u897f", "\u9632\u57ce\u6e2f\u5e02", "\u4e0a\u601d\u53bf"], ["\u6df1\u9f99\u6c34\u5e93", "1959", "19.0", "\u4e2d\u578b", "\u73e0\u6c5f", "\u5e7f\u897f", "\u94a6\u5dde\u5e02", "\u94a6\u5357\u533a"], ["\u5b66\u6597\u5858\u6c34\u5e93", "1956", "37.0", "\u5c0f\u578b", "\u73e0\u6c5f", "\u5e7f\u897f", "\u8d35\u6e2f\u5e02", "\u8983\u5858\u533a"]], "headers": ["\u6c34\u5e93\u540d\u79f0", "\u5efa\u6210\u65f6\u95f4", "\u5e93\u5bb9", "\u5de5\u7a0b\u89c4\u6a21", "\u6240\u5728\u6d41\u57df", "\u7701", "\u5e02", "\u53bf"]}
gradio_cached_examples/19/索引到的数据库/tmp81wmpxtd.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [["b180", "\u8f7f\u8f66", "5.7", "1332", "2729", "136", "9.3", "23.98"], ["e53", "\u8f7f\u8f66", "8.7", "2999", "2873", "435", "4.4", "97.88"], ["s63", "\u8f7f\u8f66", "10", "3982", "2945", "612", "3.5", "229.88"], ["gla180", "suv", "6", "1332", "2729", "163", "9.9", "27.68"], ["glc260", "suv", "8.1", "1991", "2973", "197", "8.4", "39.78"], ["gls600", "suv", "12", "3982", "3135", "557", "4.9", "273.8"]], "headers": ["\u4ea7\u54c1\u540d\u79f0", "\u6c7d\u8f66\u7c7b\u578b", "\u7efc\u5408\u8017\u6cb9\u91cf", "\u6392\u91cf", "\u8f74\u8ddd", "\u529f\u7387", "\u767e\u516c\u91cc\u52a0\u901f", "\u96f6\u552e\u4ef7"]}
gradio_cached_examples/19/索引到的数据库/tmpbu3yavq7.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [["b180", "\u8f7f\u8f66", "5.7", "1332", "2729", "136", "9.3", "23.98"], ["e53", "\u8f7f\u8f66", "8.7", "2999", "2873", "435", "4.4", "97.88"], ["s63", "\u8f7f\u8f66", "10", "3982", "2945", "612", "3.5", "229.88"], ["gla180", "suv", "6", "1332", "2729", "163", "9.9", "27.68"], ["glc260", "suv", "8.1", "1991", "2973", "197", "8.4", "39.78"], ["gls600", "suv", "12", "3982", "3135", "557", "4.9", "273.8"]], "headers": ["\u4ea7\u54c1\u540d\u79f0", "\u6c7d\u8f66\u7c7b\u578b", "\u7efc\u5408\u8017\u6cb9\u91cf", "\u6392\u91cf", "\u8f74\u8ddd", "\u529f\u7387", "\u767e\u516c\u91cc\u52a0\u901f", "\u96f6\u552e\u4ef7"]}
gradio_cached_examples/19/索引到的数据库/tmpkwc_qoiq.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [["\u9648\u73ca\u73ca", "1206858", "\u535a\u58eb", "\u8ba1\u7b97\u673a", "\u4e0d\u53ca\u683c", "159", "48", "\u672c\u90e8"], ["\u674e\u535a\u6d0b", "1206859", "\u535a\u58eb", "\u751f\u7269", "\u4f18\u79c0", "172", "75", "\u672c\u90e8"], ["\u8d75\u9e9f\u4fca", "1206860", "\u7855\u58eb", "\u8ba1\u7b97\u673a", "\u4f18\u79c0", "175", "85", "\u672c\u90e8"], ["\u9ad8\u68a6", "1206861", "\u7855\u58eb", "\u91d1\u878d", "\u826f\u597d", "169", "53", "\u672c\u90e8"], ["\u59da\u60a6", "1206862", "\u7855\u58eb", "\u751f\u7269", "\u4f18\u79c0", "173", "50", "\u672c\u90e8"], ["\u738b\u6768\u5a01", "1206863", "\u672c\u79d1", "\u8ba1\u7b97\u673a", "\u826f\u597d", "185", "75", "\u65b0\u533a"], ["\u6768\u806a\u6bc5", "1206864", "\u672c\u79d1", "\u91d1\u878d", "\u826f\u597d", "172", "65", "\u65b0\u533a"], ["\u5218\u626c", "1206865", "\u672c\u79d1", "\u5316\u5b66", "\u826f\u597d", "163", "58", "\u65b0\u533a"]], "headers": ["\u59d3\u540d", "\u5b66\u53f7", "\u5b66\u4f4d", "\u4e13\u4e1a\u540d\u79f0", "\u6210\u7ee9", "\u8eab\u9ad8", "\u4f53\u91cd", "\u6821\u533a"]}
gradio_cached_examples/19/索引到的数据库/tmplk0my6tm.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [["512843", "\u4e2d\u8bc1\u6d88\u8d39", "\u6307\u6570\u578b", "3.0135", "\u4e2d\u98ce\u9669", "2.94", "66.36", "66.53"], ["125303", "\u533b\u836f\u5065\u5eb7", "\u80a1\u7968\u578b", "1.2778", "\u4e2d\u98ce\u9669", "4.97", "46.34", "64.01"], ["503459", "\u6218\u7565\u6df7\u5408", "\u6df7\u5408\u578b", "1.0566", "\u4e2d\u98ce\u9669", "0.21", "4.08", "3.62"], ["2115", "\u5982\u610f\u5b9d", "\u503a\u5238\u578b", "1.125", "\u4e2d\u4f4e\u98ce\u9669", "0.13", "3.15", "2.71"], ["85643", "\u7406\u8d22\u5b9d", "\u7406\u8d22\u578b", "1", "\u4f4e\u98ce\u9669", "0.24", "2.92", "2.59"], ["23459", "\u8d27\u5e01", "\u8d27\u5e01\u578b", "1", "\u4f4e\u98ce\u9669", "0.22", "2.84", "2.49"]], "headers": ["\u57fa\u91d1\u4ee3\u7801", "\u57fa\u91d1\u540d\u79f0", "\u57fa\u91d1\u7c7b\u578b", "\u51c0\u503c", "\u98ce\u9669\u7b49\u7ea7", "\u6708\u6536\u76ca\u7387", "\u53bb\u5e74\u5e74\u6536\u76ca\u7387", "\u4eca\u5e74\u5e74\u6536\u76ca\u7387"]}
gradio_cached_examples/19/索引到的数据库/tmplytfiry_.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [["\u9648\u73ca\u73ca", "1206858", "\u535a\u58eb", "\u8ba1\u7b97\u673a", "\u4e0d\u53ca\u683c", "159", "48", "\u672c\u90e8"], ["\u674e\u535a\u6d0b", "1206859", "\u535a\u58eb", "\u751f\u7269", "\u4f18\u79c0", "172", "75", "\u672c\u90e8"], ["\u8d75\u9e9f\u4fca", "1206860", "\u7855\u58eb", "\u8ba1\u7b97\u673a", "\u4f18\u79c0", "175", "85", "\u672c\u90e8"], ["\u9ad8\u68a6", "1206861", "\u7855\u58eb", "\u91d1\u878d", "\u826f\u597d", "169", "53", "\u672c\u90e8"], ["\u59da\u60a6", "1206862", "\u7855\u58eb", "\u751f\u7269", "\u4f18\u79c0", "173", "50", "\u672c\u90e8"], ["\u738b\u6768\u5a01", "1206863", "\u672c\u79d1", "\u8ba1\u7b97\u673a", "\u826f\u597d", "185", "75", "\u65b0\u533a"], ["\u6768\u806a\u6bc5", "1206864", "\u672c\u79d1", "\u91d1\u878d", "\u826f\u597d", "172", "65", "\u65b0\u533a"], ["\u5218\u626c", "1206865", "\u672c\u79d1", "\u5316\u5b66", "\u826f\u597d", "163", "58", "\u65b0\u533a"]], "headers": ["\u59d3\u540d", "\u5b66\u53f7", "\u5b66\u4f4d", "\u4e13\u4e1a\u540d\u79f0", "\u6210\u7ee9", "\u8eab\u9ad8", "\u4f53\u91cd", "\u6821\u533a"]}
gradio_cached_examples/19/索引到的数据库/tmpnpvwpij7.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [["\u4e0a\u94f6\u5751\u6c34\u5e93", "1960", "2.0", "\u5c0f\u578b", "\u957f\u6c5f", "\u5e7f\u4e1c", "\u6c55\u5c3e\u5e02", "\u9646\u4e30\u53bf"], ["\u7281\u5858\u6c34\u5e93", "1951", "12.0", "\u5c0f\u578b", "\u73e0\u6c5f", "\u5e7f\u4e1c", "\u6cb3\u6e90\u5e02", "\u548c\u5e73\u53bf"], ["\u4e48\u5858\u6c34\u5e93", "1956", "32.0", "\u5c0f\u578b", "\u957f\u6c5f", "\u5e7f\u897f", "\u68a7\u5dde\u5e02", "\u85e4\u53bf"], ["\u7405\u51b2\u6c34\u5e93", "1970", "18.0", "\u4e2d\u578b", "\u9ec4\u6cb3", "\u5e7f\u897f", "\u68a7\u5dde\u5e02", "\u5c91\u6eaa\u5e02"], ["\u4e0b\u6865\u6c34\u5e93", "2005", "28.0", "\u4e2d\u578b", "\u957f\u6c5f", "\u5e7f\u897f", "\u6cb3\u6c60\u5e02", "\u91d1\u57ce\u6c5f\u533a"], ["\u767e\u516d\u541e\u6c34\u5e93", "1958", "11.0", "\u5c0f\u578b", "\u73e0\u6c5f", "\u5e7f\u897f", "\u9632\u57ce\u6e2f\u5e02", "\u4e0a\u601d\u53bf"], ["\u6df1\u9f99\u6c34\u5e93", "1959", "19.0", "\u4e2d\u578b", "\u73e0\u6c5f", "\u5e7f\u897f", "\u94a6\u5dde\u5e02", "\u94a6\u5357\u533a"], ["\u5b66\u6597\u5858\u6c34\u5e93", "1956", "37.0", "\u5c0f\u578b", "\u73e0\u6c5f", "\u5e7f\u897f", "\u8d35\u6e2f\u5e02", "\u8983\u5858\u533a"]], "headers": ["\u6c34\u5e93\u540d\u79f0", "\u5efa\u6210\u65f6\u95f4", "\u5e93\u5bb9", "\u5de5\u7a0b\u89c4\u6a21", "\u6240\u5728\u6d41\u57df", "\u7701", "\u5e02", "\u53bf"]}
gradio_cached_examples/19/索引到的数据库/tmpsxe8rwcs.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [["512843", "\u4e2d\u8bc1\u6d88\u8d39", "\u6307\u6570\u578b", "3.0135", "\u4e2d\u98ce\u9669", "2.94", "66.36", "66.53"], ["125303", "\u533b\u836f\u5065\u5eb7", "\u80a1\u7968\u578b", "1.2778", "\u4e2d\u98ce\u9669", "4.97", "46.34", "64.01"], ["503459", "\u6218\u7565\u6df7\u5408", "\u6df7\u5408\u578b", "1.0566", "\u4e2d\u98ce\u9669", "0.21", "4.08", "3.62"], ["2115", "\u5982\u610f\u5b9d", "\u503a\u5238\u578b", "1.125", "\u4e2d\u4f4e\u98ce\u9669", "0.13", "3.15", "2.71"], ["85643", "\u7406\u8d22\u5b9d", "\u7406\u8d22\u578b", "1", "\u4f4e\u98ce\u9669", "0.24", "2.92", "2.59"], ["23459", "\u8d27\u5e01", "\u8d27\u5e01\u578b", "1", "\u4f4e\u98ce\u9669", "0.22", "2.84", "2.49"]], "headers": ["\u57fa\u91d1\u4ee3\u7801", "\u57fa\u91d1\u540d\u79f0", "\u57fa\u91d1\u7c7b\u578b", "\u51c0\u503c", "\u98ce\u9669\u7b49\u7ea7", "\u6708\u6536\u76ca\u7387", "\u53bb\u5e74\u5e74\u6536\u76ca\u7387", "\u4eca\u5e74\u5e74\u6536\u76ca\u7387"]}
gradio_cached_examples/19/索引到的数据库/tmpsykw1yw4.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [["512843", "\u4e2d\u8bc1\u6d88\u8d39", "\u6307\u6570\u578b", "3.0135", "\u4e2d\u98ce\u9669", "2.94", "66.36", "66.53"], ["125303", "\u533b\u836f\u5065\u5eb7", "\u80a1\u7968\u578b", "1.2778", "\u4e2d\u98ce\u9669", "4.97", "46.34", "64.01"], ["503459", "\u6218\u7565\u6df7\u5408", "\u6df7\u5408\u578b", "1.0566", "\u4e2d\u98ce\u9669", "0.21", "4.08", "3.62"], ["2115", "\u5982\u610f\u5b9d", "\u503a\u5238\u578b", "1.125", "\u4e2d\u4f4e\u98ce\u9669", "0.13", "3.15", "2.71"], ["85643", "\u7406\u8d22\u5b9d", "\u7406\u8d22\u578b", "1", "\u4f4e\u98ce\u9669", "0.24", "2.92", "2.59"], ["23459", "\u8d27\u5e01", "\u8d27\u5e01\u578b", "1", "\u4f4e\u98ce\u9669", "0.22", "2.84", "2.49"]], "headers": ["\u57fa\u91d1\u4ee3\u7801", "\u57fa\u91d1\u540d\u79f0", "\u57fa\u91d1\u7c7b\u578b", "\u51c0\u503c", "\u98ce\u9669\u7b49\u7ea7", "\u6708\u6536\u76ca\u7387", "\u53bb\u5e74\u5e74\u6536\u76ca\u7387", "\u4eca\u5e74\u5e74\u6536\u76ca\u7387"]}
gradio_cached_examples/19/索引到的数据库/tmpudoy7_49.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [["512843", "\u4e2d\u8bc1\u6d88\u8d39", "\u6307\u6570\u578b", "3.0135", "\u4e2d\u98ce\u9669", "2.94", "66.36", "66.53"], ["125303", "\u533b\u836f\u5065\u5eb7", "\u80a1\u7968\u578b", "1.2778", "\u4e2d\u98ce\u9669", "4.97", "46.34", "64.01"], ["503459", "\u6218\u7565\u6df7\u5408", "\u6df7\u5408\u578b", "1.0566", "\u4e2d\u98ce\u9669", "0.21", "4.08", "3.62"], ["2115", "\u5982\u610f\u5b9d", "\u503a\u5238\u578b", "1.125", "\u4e2d\u4f4e\u98ce\u9669", "0.13", "3.15", "2.71"], ["85643", "\u7406\u8d22\u5b9d", "\u7406\u8d22\u578b", "1", "\u4f4e\u98ce\u9669", "0.24", "2.92", "2.59"], ["23459", "\u8d27\u5e01", "\u8d27\u5e01\u578b", "1", "\u4f4e\u98ce\u9669", "0.22", "2.84", "2.49"]], "headers": ["\u57fa\u91d1\u4ee3\u7801", "\u57fa\u91d1\u540d\u79f0", "\u57fa\u91d1\u7c7b\u578b", "\u51c0\u503c", "\u98ce\u9669\u7b49\u7ea7", "\u6708\u6536\u76ca\u7387", "\u53bb\u5e74\u5e74\u6536\u76ca\u7387", "\u4eca\u5e74\u5e74\u6536\u76ca\u7387"]}
gradio_cached_examples/19/索引到的数据库/tmpyn704fxk.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"data": [["\u4e0a\u94f6\u5751\u6c34\u5e93", "1960", "2.0", "\u5c0f\u578b", "\u957f\u6c5f", "\u5e7f\u4e1c", "\u6c55\u5c3e\u5e02", "\u9646\u4e30\u53bf"], ["\u7281\u5858\u6c34\u5e93", "1951", "12.0", "\u5c0f\u578b", "\u73e0\u6c5f", "\u5e7f\u4e1c", "\u6cb3\u6e90\u5e02", "\u548c\u5e73\u53bf"], ["\u4e48\u5858\u6c34\u5e93", "1956", "32.0", "\u5c0f\u578b", "\u957f\u6c5f", "\u5e7f\u897f", "\u68a7\u5dde\u5e02", "\u85e4\u53bf"], ["\u7405\u51b2\u6c34\u5e93", "1970", "18.0", "\u4e2d\u578b", "\u9ec4\u6cb3", "\u5e7f\u897f", "\u68a7\u5dde\u5e02", "\u5c91\u6eaa\u5e02"], ["\u4e0b\u6865\u6c34\u5e93", "2005", "28.0", "\u4e2d\u578b", "\u957f\u6c5f", "\u5e7f\u897f", "\u6cb3\u6c60\u5e02", "\u91d1\u57ce\u6c5f\u533a"], ["\u767e\u516d\u541e\u6c34\u5e93", "1958", "11.0", "\u5c0f\u578b", "\u73e0\u6c5f", "\u5e7f\u897f", "\u9632\u57ce\u6e2f\u5e02", "\u4e0a\u601d\u53bf"], ["\u6df1\u9f99\u6c34\u5e93", "1959", "19.0", "\u4e2d\u578b", "\u73e0\u6c5f", "\u5e7f\u897f", "\u94a6\u5dde\u5e02", "\u94a6\u5357\u533a"], ["\u5b66\u6597\u5858\u6c34\u5e93", "1956", "37.0", "\u5c0f\u578b", "\u73e0\u6c5f", "\u5e7f\u897f", "\u8d35\u6e2f\u5e02", "\u8983\u5858\u533a"]], "headers": ["\u6c34\u5e93\u540d\u79f0", "\u5efa\u6210\u65f6\u95f4", "\u5e93\u5bb9", "\u5de5\u7a0b\u89c4\u6a21", "\u6240\u5728\u6d41\u57df", "\u7701", "\u5e02", "\u53bf"]}