Bot commited on
Commit
3790900
·
1 Parent(s): dbdf0a6

Remove internal progress-log reference from comment

Browse files
Files changed (1) hide show
  1. app.py +2 -3
app.py CHANGED
@@ -209,9 +209,8 @@ def execute_sql(sql: str):
209
 
210
  # Verified working (question, schema) pairs for the "Try an Example" button.
211
  # Each was manually tested against the live deployed model before being
212
- # added here -- this model's measured accuracy is low (~2% exact-match on
213
- # held-out unseen schemas, see PROGRESS.md), so examples are NOT guessed;
214
- # every one below produced a correct, sensible query + result when tested.
215
  DEFAULT_SCHEMA = """CREATE TABLE customers (id INTEGER, name TEXT, region TEXT, revenue REAL)
216
  CREATE TABLE orders (id INTEGER, customer_id INTEGER, amount REAL, date TEXT)"""
217
 
 
209
 
210
  # Verified working (question, schema) pairs for the "Try an Example" button.
211
  # Each was manually tested against the live deployed model before being
212
+ # added here, rather than guessed -- every one below produced a correct,
213
+ # sensible query + result when tested.
 
214
  DEFAULT_SCHEMA = """CREATE TABLE customers (id INTEGER, name TEXT, region TEXT, revenue REAL)
215
  CREATE TABLE orders (id INTEGER, customer_id INTEGER, amount REAL, date TEXT)"""
216