cmckinle commited on
Commit
15cffc9
·
verified ·
1 Parent(s): aefc9b9

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +147 -0
app.py ADDED
@@ -0,0 +1,147 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ html += "<h3>False Negatives (Real images classified as AI):</h3>"
2
+ html += '<div class="image-grid">'
3
+ for img_name, img_data in false_negatives:
4
+ html += f'''
5
+ <div class="image-item">
6
+ <img src="data:image/jpeg;base64,{img_data}" alt="{img_name}">
7
+ <p>{img_name}</p>
8
+ </div>
9
+ '''
10
+ html += '</div>'
11
+
12
+ return html
13
+
14
+ def load_url(url):
15
+ try:
16
+ urllib.request.urlretrieve(url, "temp_image.png")
17
+ image = Image.open("temp_image.png")
18
+ message = "Image Loaded"
19
+ except Exception as e:
20
+ image = None
21
+ message = f"Image not Found<br>Error: {e}"
22
+ return image, message
23
+
24
+ detector = AIDetector()
25
+
26
+ def create_gradio_interface():
27
+ with gr.Blocks() as app:
28
+ gr.Markdown("""<center><h1>AI Image Detector</h1></center>""")
29
+
30
+ with gr.Tabs():
31
+ with gr.Tab("Single Image Detection"):
32
+ with gr.Column():
33
+ inp = gr.Image(type='pil')
34
+ in_url = gr.Textbox(label="Image URL")
35
+ with gr.Row():
36
+ load_btn = gr.Button("Load URL")
37
+ btn = gr.Button("Detect AI")
38
+ message = gr.HTML()
39
+
40
+ with gr.Group():
41
+ with gr.Box():
42
+ gr.HTML(f"""<b>Testing on Model: <a href='https://huggingface.co/{MODEL_NAME}'>{MODEL_NAME}</a></b>""")
43
+ output_html = gr.HTML()
44
+ output_label = gr.Label(label="Output")
45
+
46
+ with gr.Tab("Batch Image Processing"):
47
+ with gr.Accordion("Upload Zip File (max 100MB)", open=False):
48
+ zip_file = gr.File(
49
+ label="Upload Zip (must contain 'real' and 'ai' folders)",
50
+ file_types=[".zip"],
51
+ file_count="single",
52
+ max_file_size=100 # 100 MB limit
53
+ )
54
+ zip_process_btn = gr.Button("Process Zip", interactive=False)
55
+
56
+ with gr.Accordion("Upload Individual Files (for datasets over 100MB)", open=False):
57
+ with gr.Row():
58
+ ai_files = gr.File(
59
+ label="Upload AI Images",
60
+ file_types=["image"],
61
+ file_count="multiple"
62
+ )
63
+ real_files = gr.File(
64
+ label="Upload Real Images",
65
+ file_types=["image"],
66
+ file_count="multiple"
67
+ )
68
+ individual_process_btn = gr.Button("Process Individual Files", interactive=False)
69
+
70
+ with gr.Group():
71
+ gr.Markdown(f"### Results for {MODEL_NAME}")
72
+ output_acc = gr.Label(label="Accuracy")
73
+ output_roc = gr.Label(label="ROC Score")
74
+ output_report = gr.HTML(label="Classification Report")
75
+ output_plots = gr.Plot(label="Confusion Matrix and ROC Curve")
76
+ output_fp_fn = gr.HTML(label="False Positives and Negatives")
77
+
78
+ # Add export button and PDF output
79
+ export_btn = gr.Button("Export Results to PDF", variant="primary")
80
+ pdf_output = gr.File(label="Downloaded PDF")
81
+
82
+ reset_btn = gr.Button("Reset")
83
+
84
+ load_btn.click(load_url, in_url, [inp, message])
85
+ btn.click(
86
+ lambda img: detector.predict(img),
87
+ inp,
88
+ [output_html, output_label]
89
+ )
90
+
91
+ def enable_zip_btn(file):
92
+ return gr.Button.update(interactive=file is not None)
93
+
94
+ def enable_individual_btn(ai_files, real_files):
95
+ return gr.Button.update(interactive=(ai_files is not None and real_files is not None))
96
+
97
+ zip_file.upload(enable_zip_btn, zip_file, zip_process_btn)
98
+
99
+ ai_files.upload(enable_individual_btn, [ai_files, real_files], individual_process_btn)
100
+ real_files.upload(enable_individual_btn, [ai_files, real_files], individual_process_btn)
101
+
102
+ zip_process_btn.click(
103
+ process_zip,
104
+ zip_file,
105
+ [output_acc, output_roc, output_report, output_plots, output_fp_fn]
106
+ )
107
+
108
+ individual_process_btn.click(
109
+ process_files,
110
+ [ai_files, real_files],
111
+ [output_acc, output_roc, output_report, output_plots, output_fp_fn]
112
+ )
113
+
114
+ # Add export button click handler
115
+ export_btn.click(
116
+ export_to_pdf,
117
+ inputs=[output_acc, output_roc, output_report, output_plots, output_fp_fn],
118
+ outputs=pdf_output
119
+ )
120
+
121
+ def reset_interface():
122
+ return [
123
+ None, None, None, None, None, # Reset inputs
124
+ gr.Button.update(interactive=False), # Reset zip process button
125
+ gr.Button.update(interactive=False), # Reset individual process button
126
+ None, None, None, None, None, None # Reset outputs (including PDF)
127
+ ]
128
+
129
+ reset_btn.click(
130
+ reset_interface,
131
+ inputs=None,
132
+ outputs=[
133
+ zip_file, ai_files, real_files,
134
+ output_acc, output_roc, output_report, output_plots, output_fp_fn,
135
+ zip_process_btn, individual_process_btn, pdf_output
136
+ ]
137
+ )
138
+
139
+ return app
140
+
141
+ if __name__ == "__main__":
142
+ app = create_gradio_interface()
143
+ app.launch(
144
+ show_api=False,
145
+ max_threads=24,
146
+ show_error=True
147
+ )