nobodynosql commited on
Commit
d38d82b
·
verified ·
1 Parent(s): f422144

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md CHANGED
@@ -1,3 +1,37 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+
5
+ ## Model Details
6
+
7
+ ### Model Description
8
+ This model is a fine-tuned version based on deepseek, and after fine-tuning, it can achieve a score of 84.0 on the Spider dev leaderboard, significantly surpassing the original capabilities of the deepseek model.
9
+ This model is sql-gen model, it need use result of schema linking model to get most related columns.
10
+ ### Data Format
11
+ ```
12
+ {
13
+ "data_name":"spider",
14
+ "id":0,
15
+ "db_id":"farm",
16
+ "chat_rounds":[
17
+ {
18
+ "role":"system",
19
+ "content":"You are a professional SQL engineer and you are writing SQL queries for data query tasks.\n",
20
+ "chat_round_id":0
21
+ },
22
+ {
23
+ "role":"human",
24
+ "content":"Question | table1 : column1 , column2 | ... | tablen: columnn, columnn+1 | foreign_keys",
25
+ "chat_round_id":1
26
+ },
27
+ {
28
+ "role":"bot",
29
+ "content":" sql",
30
+ "chat_round_id":2
31
+ }
32
+ ]
33
+ }
34
+ ```
35
+ ### Framework versions
36
+
37
+ - PEFT 0.7.0