yuechen-yang commited on
Commit
6a2d000
·
1 Parent(s): 683ae67
Files changed (1) hide show
  1. app.py +26 -23
app.py CHANGED
@@ -19,29 +19,32 @@ def main():
19
 
20
  st.header("Try it out!")
21
 
22
- uploaded_file = st.file_uploader("Upload Files",type=['png','jpeg'])
23
- img=Image.open(uploaded_file)
24
-
25
- extractor = AutoFeatureExtractor.from_pretrained("yangy50/garbage-classification")
26
- model = AutoModelForImageClassification.from_pretrained("yangy50/garbage-classification")
27
-
28
- inputs = extractor(img,return_tensors="pt")
29
- outputs = model(**inputs)
30
- label_num=outputs.logits.softmax(1).argmax(1)
31
- label_num=label_num.item()
32
-
33
- if label_num==0:
34
- st.write("cardboard")
35
- elif label_num==1:
36
- st.write("glass")
37
- elif label_num==2:
38
- st.write("metal")
39
- elif label_num==3:
40
- st.write("paper")
41
- elif label_num==4:
42
- st.write("plastic")
43
- else:
44
- st.write("trash")
 
 
 
45
 
46
 
47
 
 
19
 
20
  st.header("Try it out!")
21
 
22
+ uploaded_file = st.file_uploader("Upload Files",type=['png','jpeg','jpg'])
23
+
24
+ if uploaded_file!=None:
25
+
26
+ img=Image.open(uploaded_file)
27
+
28
+ extractor = AutoFeatureExtractor.from_pretrained("yangy50/garbage-classification")
29
+ model = AutoModelForImageClassification.from_pretrained("yangy50/garbage-classification")
30
+
31
+ inputs = extractor(img,return_tensors="pt")
32
+ outputs = model(**inputs)
33
+ label_num=outputs.logits.softmax(1).argmax(1)
34
+ label_num=label_num.item()
35
+
36
+ if label_num==0:
37
+ st.write("cardboard")
38
+ elif label_num==1:
39
+ st.write("glass")
40
+ elif label_num==2:
41
+ st.write("metal")
42
+ elif label_num==3:
43
+ st.write("paper")
44
+ elif label_num==4:
45
+ st.write("plastic")
46
+ else:
47
+ st.write("trash")
48
 
49
 
50