LPX commited on
Commit
2d3dc2a
·
1 Parent(s): f54d46f

major(ui): modelscope and antd implementation

Browse files
Files changed (1) hide show
  1. app.py +59 -61
app.py CHANGED
@@ -248,67 +248,65 @@ def predict_image_with_html(img, confidence_threshold, augment_methods, rotate_d
248
  return img_pil, forensics_images, html_content
249
 
250
  with gr.Blocks(css="#post-gallery { overflow: hidden !important;} .grid-wrap{ overflow-y: hidden !important;}") as iface:
251
- with gr.Accordion("Project OpenSight - Model Evaluations & Playground", open=False, elem_id="project_accordion"):
252
- gr.Markdown("## OpenSight is a SOTA gen. image detection model, in pre-release prep.\n\nThis HF Space is a temporary home for us and the public to evaluate the shortcomings of current open source models.\n\n<-- Feel free to play around by starting with an image as we prepare our formal announcement.")
253
- with gr.Tab("👀 Model Evals / Playground"):
254
- gr.Markdown("# AI Generated Image / Deepfake Detection Models Evaluation")
255
-
256
- with gr.Row():
257
- with gr.Column(scale=1):
258
- image_input = gr.Image(label="Upload Image to Analyze", sources=['upload'], type='pil')
259
- with gr.Accordion("Settings (Optional)", open=False, elem_id="settings_accordion"):
260
- augment_checkboxgroup = gr.CheckboxGroup(["rotate", "add_noise", "sharpen"], label="Augmentation Methods")
261
- rotate_slider = gr.Slider(0, 45, value=2, step=1, label="Rotate Degrees", visible=False)
262
- noise_slider = gr.Slider(0, 50, value=4, step=1, label="Noise Level", visible=False)
263
- sharpen_slider = gr.Slider(0, 50, value=11, step=1, label="Sharpen Strength", visible=False)
264
- confidence_slider = gr.Slider(0.0, 1.0, value=0.75, step=0.05, label="Confidence Threshold")
265
- inputs = [image_input, confidence_slider, augment_checkboxgroup, rotate_slider, noise_slider, sharpen_slider]
266
- predict_button = gr.Button("Predict")
267
- augment_button = gr.Button("Augment & Predict")
268
- image_output = gr.Image(label="Processed Image", visible=False)
269
-
270
-
271
- with gr.Column(scale=2):
272
- # Custom HTML component to display results in 5 columns
273
- results_html = gr.HTML(label="Model Predictions")
274
- forensics_gallery = gr.Gallery(label="Post Processed Images", visible=True, columns=[5], rows=[1], container=False, height="auto", object_fit="contain", elem_id="post-gallery")
275
-
276
- outputs = [image_output, forensics_gallery, results_html]
277
-
278
- # Show/hide rotate slider based on selected augmentation method
279
- augment_checkboxgroup.change(lambda methods: gr.update(visible="rotate" in methods), inputs=[augment_checkboxgroup], outputs=[rotate_slider])
280
- augment_checkboxgroup.change(lambda methods: gr.update(visible="add_noise" in methods), inputs=[augment_checkboxgroup], outputs=[noise_slider])
281
- augment_checkboxgroup.change(lambda methods: gr.update(visible="sharpen" in methods), inputs=[augment_checkboxgroup], outputs=[sharpen_slider])
282
-
283
- predict_button.click(
284
- fn=predict_image_with_html,
285
- inputs=inputs,
286
- outputs=outputs
287
- )
288
- augment_button.click( # Connect Augment button to the function
289
- fn=predict_image_with_html,
290
- inputs=[
291
- image_input,
292
- confidence_slider,
293
- gr.CheckboxGroup(["rotate", "add_noise", "sharpen"], value=["rotate", "add_noise", "sharpen"], visible=False), # Default values
294
- rotate_slider,
295
- noise_slider,
296
- sharpen_slider
297
- ],
298
- outputs=outputs
299
- )
300
- predict_button.click(
301
- fn=None,
302
- js="() => {document.getElementById('project_accordion').open = false;}", # Close the project accordion
303
- inputs=[],
304
- outputs=[]
305
- )
306
-
307
- with gr.Tab("🥇 Leaderboard"):
308
- # Add components for the second interface here
309
- with ms.Application() as app:
310
- with antd.ConfigProvider():
311
- # Example: Add a simple text input and output
312
  text_input = gr.Textbox(label="Enter Text")
313
  text_output = gr.Textbox(label="Processed Text")
314
  text_button = gr.Button("Process Text")
 
248
  return img_pil, forensics_images, html_content
249
 
250
  with gr.Blocks(css="#post-gallery { overflow: hidden !important;} .grid-wrap{ overflow-y: hidden !important;}") as iface:
251
+ with ms.Application() as app:
252
+ with antd.ConfigProvider():
253
+ with gr.Accordion("Project OpenSight - Model Evaluations & Playground", open=False, elem_id="project_accordion"):
254
+ gr.Markdown("## OpenSight is a SOTA gen. image detection model, in pre-release prep.\n\nThis HF Space is a temporary home for us and the public to evaluate the shortcomings of current open source models.\n\n<-- Feel free to play around by starting with an image as we prepare our formal announcement.")
255
+ with gr.Tab("👀 Model Evals / Playground"):
256
+ gr.Markdown("# AI Generated Image / Deepfake Detection Models Evaluation")
257
+
258
+ with gr.Row():
259
+ with gr.Column(scale=1):
260
+ image_input = gr.Image(label="Upload Image to Analyze", sources=['upload'], type='pil')
261
+ with gr.Accordion("Settings (Optional)", open=False, elem_id="settings_accordion"):
262
+ augment_checkboxgroup = gr.CheckboxGroup(["rotate", "add_noise", "sharpen"], label="Augmentation Methods")
263
+ rotate_slider = gr.Slider(0, 45, value=2, step=1, label="Rotate Degrees", visible=False)
264
+ noise_slider = gr.Slider(0, 50, value=4, step=1, label="Noise Level", visible=False)
265
+ sharpen_slider = gr.Slider(0, 50, value=11, step=1, label="Sharpen Strength", visible=False)
266
+ confidence_slider = gr.Slider(0.0, 1.0, value=0.75, step=0.05, label="Confidence Threshold")
267
+ inputs = [image_input, confidence_slider, augment_checkboxgroup, rotate_slider, noise_slider, sharpen_slider]
268
+ predict_button = gr.Button("Predict")
269
+ augment_button = gr.Button("Augment & Predict")
270
+ image_output = gr.Image(label="Processed Image", visible=False)
271
+
272
+
273
+ with gr.Column(scale=2):
274
+ # Custom HTML component to display results in 5 columns
275
+ results_html = gr.HTML(label="Model Predictions")
276
+ forensics_gallery = gr.Gallery(label="Post Processed Images", visible=True, columns=[5], rows=[1], container=False, height="auto", object_fit="contain", elem_id="post-gallery")
277
+
278
+ outputs = [image_output, forensics_gallery, results_html]
279
+
280
+ # Show/hide rotate slider based on selected augmentation method
281
+ augment_checkboxgroup.change(lambda methods: gr.update(visible="rotate" in methods), inputs=[augment_checkboxgroup], outputs=[rotate_slider])
282
+ augment_checkboxgroup.change(lambda methods: gr.update(visible="add_noise" in methods), inputs=[augment_checkboxgroup], outputs=[noise_slider])
283
+ augment_checkboxgroup.change(lambda methods: gr.update(visible="sharpen" in methods), inputs=[augment_checkboxgroup], outputs=[sharpen_slider])
284
+
285
+ predict_button.click(
286
+ fn=predict_image_with_html,
287
+ inputs=inputs,
288
+ outputs=outputs
289
+ )
290
+ augment_button.click( # Connect Augment button to the function
291
+ fn=predict_image_with_html,
292
+ inputs=[
293
+ image_input,
294
+ confidence_slider,
295
+ gr.CheckboxGroup(["rotate", "add_noise", "sharpen"], value=["rotate", "add_noise", "sharpen"], visible=False), # Default values
296
+ rotate_slider,
297
+ noise_slider,
298
+ sharpen_slider
299
+ ],
300
+ outputs=outputs
301
+ )
302
+ predict_button.click(
303
+ fn=None,
304
+ js="() => {document.getElementById('project_accordion').open = false;}", # Close the project accordion
305
+ inputs=[],
306
+ outputs=[]
307
+ )
308
+
309
+ with gr.Tab("🥇 Leaderboard"):
 
 
310
  text_input = gr.Textbox(label="Enter Text")
311
  text_output = gr.Textbox(label="Processed Text")
312
  text_button = gr.Button("Process Text")