corvo7 commited on
Commit
013cf16
·
verified ·
1 Parent(s): 142ec37

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -2
app.py CHANGED
@@ -2,13 +2,16 @@ import streamlit as st
2
  from transformers import pipeline
3
  import numpy
4
  import torch
 
 
 
 
5
 
6
 
7
  st.write("welcome to age detection app")
8
 
9
  uploaded_files = st.file_uploader("Choose a image file")
10
 
11
-
12
  pipe = pipeline("image-classification", model="dima806/facial_age_image_detection")
13
 
14
- st.write(pipe(st.image(uploaded_files))[0]["label"])
 
2
  from transformers import pipeline
3
  import numpy
4
  import torch
5
+ import matplotlib.pyplot
6
+ import PIL
7
+ from PIL import Image
8
+
9
 
10
 
11
  st.write("welcome to age detection app")
12
 
13
  uploaded_files = st.file_uploader("Choose a image file")
14
 
 
15
  pipe = pipeline("image-classification", model="dima806/facial_age_image_detection")
16
 
17
+ st.write(pipe(st.image(Image.open(uploaded_files )))[0]["label"])