OMazzuzi90 commited on
Commit
7bf9d54
1 Parent(s): 9fa1255

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +25 -1
README.md CHANGED
@@ -31,8 +31,32 @@ For Example the script SELECT * FROM CLIENTI, in Italian it could be expressed b
31
  Clearly, with a much larger and more comprehensive dataset, for instance, one that includes all possible synonyms of an Italian verb, the model would be capable of being significantly more accurate. Currently, the dataset consists of about 21k rows.
32
 
33
  ## Model description
 
34
 
35
- More information needed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
36
 
37
  ## Intended uses & limitations
38
 
 
31
  Clearly, with a much larger and more comprehensive dataset, for instance, one that includes all possible synonyms of an Italian verb, the model would be capable of being significantly more accurate. Currently, the dataset consists of about 21k rows.
32
 
33
  ## Model description
34
+ The model takes uppercase sentences as input, with the prefix "TRANSLATE ITA TO SQL: " followed by the phrase that you want to try to translate.
35
 
36
+ Here are some functional and usable examples:
37
+
38
+
39
+ TRANSLATE ITA TO SQL: MOSTRAMI TUTTI I [TABLE]
40
+
41
+ Ex:
42
+ TRANSLATE ITA TO SQL: MOSTRAMI TUTTI I CLIENTI
43
+
44
+ SELECT * FROM CLIENTI
45
+
46
+ TRANSLATE ITA TO SQL: MOSTRAMI [COLUMN] DEI [TABLE]
47
+
48
+ Ex:
49
+ TRANSLATE ITA TO SQL: MOSTRAMI NOME DEI CLIENTI
50
+
51
+ SELECT NOME FROM CLIENTI
52
+
53
+
54
+ TRANSLATE ITALIAN TO SQL: MOSTRAMI [COLUMN] DEI [TABLE] QUANDO [COLUMN] COMPRESA TRA [PARAM1] E [PARAM2]
55
+
56
+ Ex:
57
+ TRANSLATE ITALIAN TO SQL: MOSTRAMI NOME DEI CLIENTI QUANDO ETA COMPRESA TRA 18 E 23
58
+
59
+ SELECT NOME FROM CLIENTI WHERE ETA BETWEEN 18 AND 23
60
 
61
  ## Intended uses & limitations
62