Parthebhan commited on
Commit
f1cc3ac
·
verified ·
1 Parent(s): 1f45ddb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -21,7 +21,14 @@ automatidata_ga = gr.Interface(fn=automatidata,
21
  gr.Number(label="Duration in mins"),
22
  gr.Number(0, 1, label="Rush Hour - [0 or 1]")
23
  ],
24
- outputs="text", title="New York City Taxi and Limousine Commission (TLC) - Taxi Fares Estimator",
 
 
 
 
 
 
 
25
  description="Predicting Taxi Fare Amount Using Machine Learning.",
26
  theme='dark'
27
  )
 
21
  gr.Number(label="Duration in mins"),
22
  gr.Number(0, 1, label="Rush Hour - [0 or 1]")
23
  ],
24
+ outputs="text", title="New York City Taxi and Limousine Commission (TLC) - Taxi Fares Estimator",
25
+ examples = [
26
+ [2,1,2.33,15.09,0],
27
+ [1,2,4.22,24.29,0],
28
+ [1,1,0.71,6.66,0],
29
+ [2,1,0.97,8.37,0],
30
+ [2,3,1.48,8.92,0],
31
+ ], ],
32
  description="Predicting Taxi Fare Amount Using Machine Learning.",
33
  theme='dark'
34
  )