kevinwang676 commited on
Commit
5131398
·
1 Parent(s): 497ec84

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py CHANGED
@@ -16,6 +16,15 @@ def auto_label(a, b):
16
  def delete_dataset():
17
  return "test"
18
 
 
 
 
 
 
 
 
 
 
19
  def refresh():
20
  return gr.update(choices=get_dataset_list()), gr.update(choices=get_model_list())
21
 
 
16
  def delete_dataset():
17
  return "test"
18
 
19
+ def train(a, b, c):
20
+ return "this is", "a", "test"
21
+
22
+ def infer(a, b):
23
+ return "this is a test"
24
+
25
+ def delete_model():
26
+ return "test"
27
+
28
  def refresh():
29
  return gr.update(choices=get_dataset_list()), gr.update(choices=get_model_list())
30