Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ models=[
|
|
14 |
"arnolfokam/ai-generated-image-detector",
|
15 |
"umm-maybe/AI-image-detector",
|
16 |
]
|
17 |
-
|
18 |
pipe0 = pipeline("image-classification", f"{models[0]}")
|
19 |
pipe1 = pipeline("image-classification", f"{models[1]}")
|
20 |
pipe2 = pipeline("image-classification", f"{models[2]}")
|
@@ -37,7 +37,7 @@ def image_classifier2(image):
|
|
37 |
for result in outputs:
|
38 |
results[result['label']] = result['score']
|
39 |
return results
|
40 |
-
|
41 |
|
42 |
def aiornot0(image):
|
43 |
labels = ["Real", "AI"]
|
@@ -84,7 +84,11 @@ def aiornot1(image):
|
|
84 |
Probabilites:<br>
|
85 |
Real: {px[0][0]}<br>
|
86 |
AI: {px[1][0]}"""
|
87 |
-
|
|
|
|
|
|
|
|
|
88 |
def aiornot2(image):
|
89 |
labels = ["AI", "Real"]
|
90 |
mod=models[2]
|
@@ -105,7 +109,13 @@ def aiornot2(image):
|
|
105 |
Probabilites:<br>
|
106 |
Real: {px[1][0]}<br>
|
107 |
AI: {px[0][0]}"""
|
108 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
with gr.Blocks() as app:
|
110 |
with gr.Column():
|
111 |
inp = gr.Pil()
|
@@ -125,9 +135,9 @@ with gr.Blocks() as app:
|
|
125 |
outp2 = gr.HTML("""""")
|
126 |
n_out2=gr.Label(label="Output")
|
127 |
btn.click(aiornot0,[inp],[outp0,n_out0])
|
128 |
-
btn.click(aiornot1,[inp],outp1)
|
129 |
-
btn.click(aiornot2,[inp],outp2)
|
130 |
#btn.click(image_classifier0,[inp],n_out0)
|
131 |
-
btn.click(image_classifier1,[inp],n_out1)
|
132 |
-
btn.click(image_classifier2,[inp],n_out2)
|
133 |
app.launch()
|
|
|
14 |
"arnolfokam/ai-generated-image-detector",
|
15 |
"umm-maybe/AI-image-detector",
|
16 |
]
|
17 |
+
'''
|
18 |
pipe0 = pipeline("image-classification", f"{models[0]}")
|
19 |
pipe1 = pipeline("image-classification", f"{models[1]}")
|
20 |
pipe2 = pipeline("image-classification", f"{models[2]}")
|
|
|
37 |
for result in outputs:
|
38 |
results[result['label']] = result['score']
|
39 |
return results
|
40 |
+
'''
|
41 |
|
42 |
def aiornot0(image):
|
43 |
labels = ["Real", "AI"]
|
|
|
84 |
Probabilites:<br>
|
85 |
Real: {px[0][0]}<br>
|
86 |
AI: {px[1][0]}"""
|
87 |
+
results = {}
|
88 |
+
for idx,result in enumerate(px):
|
89 |
+
results[labels[idx]] = px[idx][0]
|
90 |
+
#results[labels['label']] = result['score']
|
91 |
+
return gr.HTML.update(html_out),results
|
92 |
def aiornot2(image):
|
93 |
labels = ["AI", "Real"]
|
94 |
mod=models[2]
|
|
|
109 |
Probabilites:<br>
|
110 |
Real: {px[1][0]}<br>
|
111 |
AI: {px[0][0]}"""
|
112 |
+
|
113 |
+
results = {}
|
114 |
+
for idx,result in enumerate(px):
|
115 |
+
results[labels[idx]] = px[idx][0]
|
116 |
+
#results[labels['label']] = result['score']
|
117 |
+
return gr.HTML.update(html_out),results
|
118 |
+
|
119 |
with gr.Blocks() as app:
|
120 |
with gr.Column():
|
121 |
inp = gr.Pil()
|
|
|
135 |
outp2 = gr.HTML("""""")
|
136 |
n_out2=gr.Label(label="Output")
|
137 |
btn.click(aiornot0,[inp],[outp0,n_out0])
|
138 |
+
btn.click(aiornot1,[inp],[outp1,n_out1])
|
139 |
+
btn.click(aiornot2,[inp],[outp2,n_out2])
|
140 |
#btn.click(image_classifier0,[inp],n_out0)
|
141 |
+
#btn.click(image_classifier1,[inp],n_out1)
|
142 |
+
#btn.click(image_classifier2,[inp],n_out2)
|
143 |
app.launch()
|