LPX55 commited on
Commit
bf857a6
·
verified ·
1 Parent(s): 7cc2ec6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -43,11 +43,11 @@ def predict_image(img, confidence_threshold):
43
 
44
  # Check if either class meets the confidence threshold
45
  if result['artificial'] >= confidence_threshold:
46
- return f"Label: artificial, Confidence: {result['artificial']:.4f}"
47
  elif result['real'] >= confidence_threshold:
48
- return f"Label: real, Confidence: {result['real']:.4f}"
49
  else:
50
- return "Uncertain Classification"
51
 
52
  # Define the Gradio interface
53
  image = gr.Image(label="Image to Analyze", sources=['upload'], type='pil') # Ensure the image type is PIL
 
43
 
44
  # Check if either class meets the confidence threshold
45
  if result['artificial'] >= confidence_threshold:
46
+ return f"⚠️ AI Generated Image, Confidence: {result['artificial']:.4f}"
47
  elif result['real'] >= confidence_threshold:
48
+ return f" Real Photo, Confidence: {result['real']:.4f}"
49
  else:
50
+ return "🤷‍♂️ Uncertain, not confident enough to call."
51
 
52
  # Define the Gradio interface
53
  image = gr.Image(label="Image to Analyze", sources=['upload'], type='pil') # Ensure the image type is PIL