andreped commited on
Commit
be8cccc
1 Parent(s): 27b15b3

Fixed WebUI call in demo app

Browse files
Files changed (1) hide show
  1. demo/app.py +1 -1
demo/app.py CHANGED
@@ -10,7 +10,7 @@ def main():
10
  class_name = "tumor"
11
 
12
  # initialize and run app
13
- app = WebUI(model_name=model_name, class_name=class_name, cwd=cwd)
14
  app.run()
15
 
16
 
 
10
  class_name = "tumor"
11
 
12
  # initialize and run app
13
+ app = WebUI(class_name=class_name, cwd=cwd)
14
  app.run()
15
 
16