Spaces:
Runtime error
Runtime error
Commit
Β·
252f296
1
Parent(s):
65966af
solution
Browse files
app.py
CHANGED
@@ -246,7 +246,7 @@ with gr.Blocks(title="Beat the AI", theme=gr.themes.Base(), css=css) as demo:
|
|
246 |
inputs=[imagebox],
|
247 |
outputs=[model_prediction],
|
248 |
).then(
|
249 |
-
fn=lambda x, y, z: "π₯" if
|
250 |
inputs=[model_prediction, user_prediction, solution],
|
251 |
outputs=[result],
|
252 |
)
|
|
|
246 |
inputs=[imagebox],
|
247 |
outputs=[model_prediction],
|
248 |
).then(
|
249 |
+
fn=lambda x, y, z: "π₯" if z==y else f"π© The solution is {chr(ord('A') + int(z))}",
|
250 |
inputs=[model_prediction, user_prediction, solution],
|
251 |
outputs=[result],
|
252 |
)
|