Spaces:
Sleeping
Sleeping
File size: 957 Bytes
4d2e252 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
import streamlit as st
from transformers import pipeline
from PIL import Image
# Load the age classification pipeline
age_classifier = pipeline("image-classification", model="nateraw/vit-age-classifier")
def classify_age(image):
"""Classify the age of a person in the given image."""
results = age_classifier(image)
# Sort results by score in descending order
results = sorted(results, key=lambda x: x['score'], reverse=True)
return results
# Streamlit UI
st.title("Age Classification using ViT")
uploaded_file = st.file_uploader("Upload an image", type=["jpg", "png", "jpeg"])
if uploaded_file is not None:
image = Image.open(uploaded_file).convert("RGB")
st.image(image, caption="Uploaded Image", use_column_width=True)
# Classify age
age_predictions = classify_age(image)
# Display results
st.subheader("Predicted Age Range:")
st.write(f"Age range: {age_predictions[0]['label']}")
|