muhammadhamza-stack commited on
Commit
9dc7070
·
1 Parent(s): f902c85

update app

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -90,7 +90,7 @@ with gr.Blocks(title="CellVision AI - Segment the Malaria Cells from Blood smeer
90
 
91
  gr.Markdown("## Step 2: Click Submit for Segmentation")
92
  with gr.Row():
93
- submit_button = gr.Button("Analyze Image", variant="Secondary")
94
  with gr.Column(scale=1):
95
  gr.Markdown("## Output")
96
  # Define Output component directly inside the column (No .render() needed)
@@ -105,6 +105,7 @@ with gr.Blocks(title="CellVision AI - Segment the Malaria Cells from Blood smeer
105
  outputs=output_image,
106
  fn=segment_image,
107
  cache_examples=False,
 
108
  )
109
 
110
 
 
90
 
91
  gr.Markdown("## Step 2: Click Submit for Segmentation")
92
  with gr.Row():
93
+ submit_button = gr.Button("Analyze Image", variant="primary")
94
  with gr.Column(scale=1):
95
  gr.Markdown("## Output")
96
  # Define Output component directly inside the column (No .render() needed)
 
105
  outputs=output_image,
106
  fn=segment_image,
107
  cache_examples=False,
108
+ label="Try with Sample Blood cell Images"
109
  )
110
 
111