cmckinle commited on
Commit
cbc1123
·
verified ·
1 Parent(s): 23cf930

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +97 -35
app.py CHANGED
@@ -201,18 +201,20 @@ def generate_pdf(accuracy, roc_score, report_html, confusion_matrix_plot):
201
  buffer = BytesIO()
202
  c = canvas.Canvas(buffer, pagesize=letter)
203
 
 
204
  c.drawString(100, 750, f"Model Results")
205
  c.drawString(100, 730, f"Accuracy: {accuracy:.2f}")
206
  c.drawString(100, 710, f"ROC Score: {roc_score:.2f}")
207
 
208
  y_position = 690
209
- for line in report_html.split('<tr>')[2:]:
210
  if y_position < 50:
211
  c.showPage()
212
  y_position = 750
213
  c.drawString(100, y_position, line.strip())
214
  y_position -= 20
215
 
 
216
  img_buffer = BytesIO()
217
  confusion_matrix_plot.savefig(img_buffer, format="png")
218
  img_buffer.seek(0)
@@ -230,47 +232,74 @@ def create_gradio_interface():
230
 
231
  with gr.Tabs():
232
  with gr.Tab("Single Image Detection"):
233
- inp = gr.Image(type='pil')
234
- in_url = gr.Textbox(label="Image URL")
235
- load_btn = gr.Button("Load URL")
236
- btn = gr.Button("Detect AI")
237
- message = gr.HTML()
238
-
239
- output_html = gr.HTML()
240
- output_label = gr.Label(label="Output")
 
 
 
 
 
241
 
242
  with gr.Tab("Batch Image Processing"):
243
- zip_file = gr.File(label="Upload Zip", file_types=[".zip"], file_count="single")
244
- zip_process_btn = gr.Button("Process Zip")
245
-
246
- ai_files = gr.File(label="Upload AI Images", file_types=["image"], file_count="multiple")
247
- real_files = gr.File(label="Upload Real Images", file_types=["image"], file_count="multiple")
248
- individual_process_btn = gr.Button("Process Individual Files")
249
-
250
- output_acc = gr.Label(label="Accuracy")
251
- output_roc = gr.Label(label="ROC Score")
252
- output_report = gr.HTML(label="Classification Report")
253
- output_plots = gr.Plot(label="Confusion Matrix and ROC Curve")
254
- output_fp_fn = gr.HTML(label="False Positives and Negatives")
255
-
256
- download_pdf_btn = gr.Button("Download Results as PDF")
257
- pdf_output = gr.File(label="Download PDF", visible=False)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
258
 
259
  reset_btn = gr.Button("Reset")
260
 
261
  load_btn.click(load_url, in_url, [inp, message])
262
- btn.click(lambda img: detector.predict(img), inp, [output_html, output_label])
 
 
 
 
263
 
264
- def on_download_pdf(accuracy, roc_score, report_html, confusion_matrix_plot):
265
- pdf_buffer = generate_pdf(accuracy, roc_score, report_html, confusion_matrix_plot)
266
- pdf_buffer.seek(0)
267
- return pdf_buffer
268
 
269
- download_pdf_btn.click(
270
- on_download_pdf,
271
- inputs=[output_acc, output_roc, output_report, output_plots],
272
- outputs=pdf_output
273
- )
 
 
274
 
275
  zip_process_btn.click(
276
  process_zip,
@@ -284,8 +313,41 @@ def create_gradio_interface():
284
  [output_acc, output_roc, output_report, output_plots, output_fp_fn]
285
  )
286
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
287
  return app
288
 
289
  if __name__ == "__main__":
290
  app = create_gradio_interface()
291
- app.launch(show_api=False, max_threads=24, show_error=True)
 
 
 
 
 
201
  buffer = BytesIO()
202
  c = canvas.Canvas(buffer, pagesize=letter)
203
 
204
+ # Add content to PDF
205
  c.drawString(100, 750, f"Model Results")
206
  c.drawString(100, 730, f"Accuracy: {accuracy:.2f}")
207
  c.drawString(100, 710, f"ROC Score: {roc_score:.2f}")
208
 
209
  y_position = 690
210
+ for line in report_html.replace("<br>", "\n").splitlines():
211
  if y_position < 50:
212
  c.showPage()
213
  y_position = 750
214
  c.drawString(100, y_position, line.strip())
215
  y_position -= 20
216
 
217
+ # Save Confusion Matrix Plot as an Image and Add it to the PDF
218
  img_buffer = BytesIO()
219
  confusion_matrix_plot.savefig(img_buffer, format="png")
220
  img_buffer.seek(0)
 
232
 
233
  with gr.Tabs():
234
  with gr.Tab("Single Image Detection"):
235
+ with gr.Column():
236
+ inp = gr.Image(type='pil')
237
+ in_url = gr.Textbox(label="Image URL")
238
+ with gr.Row():
239
+ load_btn = gr.Button("Load URL")
240
+ btn = gr.Button("Detect AI")
241
+ message = gr.HTML()
242
+
243
+ with gr.Group():
244
+ with gr.Box():
245
+ gr.HTML(f"""<b>Testing on Model: <a href='https://huggingface.co/{MODEL_NAME}'>{MODEL_NAME}</a></b>""")
246
+ output_html = gr.HTML()
247
+ output_label = gr.Label(label="Output")
248
 
249
  with gr.Tab("Batch Image Processing"):
250
+ with gr.Accordion("Upload Zip File (max 100MB)", open=False):
251
+ zip_file = gr.File(
252
+ label="Upload Zip (must contain 'real' and 'ai' folders)",
253
+ file_types=[".zip"],
254
+ file_count="single",
255
+ max_file_size=100 # 100 MB limit
256
+ )
257
+ zip_process_btn = gr.Button("Process Zip", interactive=False)
258
+
259
+ with gr.Accordion("Upload Individual Files (for datasets over 100MB)", open=False):
260
+ with gr.Row():
261
+ ai_files = gr.File(
262
+ label="Upload AI Images",
263
+ file_types=["image"],
264
+ file_count="multiple"
265
+ )
266
+ real_files = gr.File(
267
+ label="Upload Real Images",
268
+ file_types=["image"],
269
+ file_count="multiple"
270
+ )
271
+ individual_process_btn = gr.Button("Process Individual Files", interactive=False)
272
+
273
+ with gr.Group():
274
+ gr.Markdown(f"### Results for {MODEL_NAME}")
275
+ output_acc = gr.Label(label="Accuracy")
276
+ output_roc = gr.Label(label="ROC Score")
277
+ output_report = gr.HTML(label="Classification Report")
278
+ output_plots = gr.Plot(label="Confusion Matrix and ROC Curve")
279
+ output_fp_fn = gr.HTML(label="False Positives and Negatives")
280
+
281
+ download_pdf_btn = gr.Button("Download Results as PDF")
282
+ pdf_output = gr.File(label="Download PDF", visible=False)
283
 
284
  reset_btn = gr.Button("Reset")
285
 
286
  load_btn.click(load_url, in_url, [inp, message])
287
+ btn.click(
288
+ lambda img: detector.predict(img),
289
+ inp,
290
+ [output_html, output_label]
291
+ )
292
 
293
+ def enable_zip_btn(file):
294
+ return gr.Button.update(interactive=file is not None)
 
 
295
 
296
+ def enable_individual_btn(ai_files, real_files):
297
+ return gr.Button.update(interactive=(ai_files is not None and real_files is not None))
298
+
299
+ zip_file.upload(enable_zip_btn, zip_file, zip_process_btn)
300
+
301
+ ai_files.upload(enable_individual_btn, [ai_files, real_files], individual_process_btn)
302
+ real_files.upload(enable_individual_btn, [ai_files, real_files], individual_process_btn)
303
 
304
  zip_process_btn.click(
305
  process_zip,
 
313
  [output_acc, output_roc, output_report, output_plots, output_fp_fn]
314
  )
315
 
316
+ def on_download_pdf(accuracy, roc_score, report_html, confusion_matrix_plot):
317
+ pdf_buffer = generate_pdf(accuracy, roc_score, report_html, confusion_matrix_plot)
318
+ pdf_buffer.seek(0)
319
+ return pdf_buffer
320
+
321
+ download_pdf_btn.click(
322
+ on_download_pdf,
323
+ inputs=[output_acc, output_roc, output_report, output_plots],
324
+ outputs=pdf_output
325
+ )
326
+
327
+ def reset_interface():
328
+ return [
329
+ None, None, None, None, None, # Reset inputs
330
+ gr.Button.update(interactive=False), # Reset zip process button
331
+ gr.Button.update(interactive=False), # Reset individual process button
332
+ None, None, None, None, None # Reset outputs
333
+ ]
334
+
335
+ reset_btn.click(
336
+ reset_interface,
337
+ inputs=None,
338
+ outputs=[
339
+ zip_file, ai_files, real_files,
340
+ output_acc, output_roc, output_report, output_plots, output_fp_fn,
341
+ zip_process_btn, individual_process_btn
342
+ ]
343
+ )
344
+
345
  return app
346
 
347
  if __name__ == "__main__":
348
  app = create_gradio_interface()
349
+ app.launch(
350
+ show_api=False,
351
+ max_threads=24,
352
+ show_error=True
353
+ )