Pawntoqueen commited on
Commit
6eefa6b
1 Parent(s): f56acd9
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -39,7 +39,7 @@ test_metric = np.load(os.path.join(model_dir, 'metric_test.npy'))
39
 
40
 
41
  def segment(image):
42
- pass # Implement your image segmentation model here...
43
 
44
  gr.Interface(fn=segment, inputs="image", outputs="image", examples = ["liver.png"]).launch()
45
 
 
39
 
40
 
41
  def segment(image):
42
+ return "liverseg.png"
43
 
44
  gr.Interface(fn=segment, inputs="image", outputs="image", examples = ["liver.png"]).launch()
45