HassanDataSci commited on
Commit
85a22e3
·
verified ·
1 Parent(s): e4d47cc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -48,7 +48,7 @@ def get_ingredients_qwen(food_name):
48
  st.title("Food Image Recognition with Ingredients")
49
 
50
  # Add banner image
51
- st.image("IR_IMAGE.png", caption="Food Recognition Model", use_column_width=True)
52
 
53
  # Sidebar for model information
54
  st.sidebar.title("Model Information")
@@ -61,7 +61,7 @@ uploaded_file = st.file_uploader("Choose a food image...", type=["jpg", "png", "
61
  if uploaded_file is not None:
62
  # Display the uploaded image
63
  image = Image.open(uploaded_file)
64
- st.image(image, caption="Uploaded Image", use_column_width=True)
65
  st.write("Classifying...")
66
 
67
  # Make predictions
@@ -80,4 +80,4 @@ if uploaded_file is not None:
80
  st.error(f"Error generating ingredients: {e}")
81
 
82
  # Footer
83
- st.sidebar.markdown("Created with ❤️ using Streamlit and Hugging Face.")
 
48
  st.title("Food Image Recognition with Ingredients")
49
 
50
  # Add banner image
51
+ st.image("IR_IMAGE.png", caption="Food Recognition Model", use_container_width=True)
52
 
53
  # Sidebar for model information
54
  st.sidebar.title("Model Information")
 
61
  if uploaded_file is not None:
62
  # Display the uploaded image
63
  image = Image.open(uploaded_file)
64
+ st.image(image, caption="Uploaded Image", use_container_width=True)
65
  st.write("Classifying...")
66
 
67
  # Make predictions
 
80
  st.error(f"Error generating ingredients: {e}")
81
 
82
  # Footer
83
+ st.sidebar.markdown("Developed by Muhammad Hassan Butt.")