Omarrran commited on
Commit
842eb49
·
verified ·
1 Parent(s): 9884995

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -5
app.py CHANGED
@@ -20,10 +20,10 @@ examples = [
20
  ["See you later!", "بَعِد چُھٹ چھُ؟"]
21
 
22
  ]
23
- # Path to your image file
24
- image_path = "https://cdn-uploads.huggingface.co/production/uploads/66afb3f1eaf3e876595627bf/cPHY7iEpErxAEakPBWvKR.png" # Replace with the actual path to your image
25
- image_path = "https://cdn-uploads.huggingface.co/production/uploads/66afb3f1eaf3e876595627bf/TZNNe4XJcO4qzoFfug18v.png" # Replace with the actual path to your image
26
 
 
 
 
27
 
28
  # Set up the Gradio interface
29
  with gr.Blocks() as demo:
@@ -55,8 +55,11 @@ with gr.Blocks() as demo:
55
  # Add examples to the interface for easy testing
56
  gr.Examples(examples=examples, inputs=user_input, outputs=transliterated_output)
57
 
58
- # Display the image at the bottom of the page
59
- gr.Image(image_path, label="Example Image", elem_id="bottom-image")
 
 
 
60
 
61
  # Launch the Gradio interface
62
  demo.launch(share=True, inbrowser=True)
 
20
  ["See you later!", "بَعِد چُھٹ چھُ؟"]
21
 
22
  ]
 
 
 
23
 
24
+ # Path to your before and after image files
25
+ before_image_path = "https://cdn-uploads.huggingface.co/production/uploads/66afb3f1eaf3e876595627bf/cPHY7iEpErxAEakPBWvKR.png" # Replace with actual path to your "before" image
26
+ after_image_path = "https://cdn-uploads.huggingface.co/production/uploads/66afb3f1eaf3e876595627bf/TZNNe4XJcO4qzoFfug18v.png" # Replace with actual path to your "after" image
27
 
28
  # Set up the Gradio interface
29
  with gr.Blocks() as demo:
 
55
  # Add examples to the interface for easy testing
56
  gr.Examples(examples=examples, inputs=user_input, outputs=transliterated_output)
57
 
58
+ # Display the "Before" and "After" images
59
+ with gr.Row():
60
+ gr.Image(before_image_path, label="Before", elem_id="before-image", show_label=True)
61
+ gr.Image(after_image_path, label="After", elem_id="after-image", show_label=True)
62
+
63
 
64
  # Launch the Gradio interface
65
  demo.launch(share=True, inbrowser=True)