Spaces:
Runtime error
Runtime error
Upload files
Browse files- .gitattributes +1 -0
- app.py +50 -0
- glass_pipeline.skops +3 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
glass_pipeline.skops filter=lfs diff=lfs merge=lfs -text
|
app.py
ADDED
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import skops.io as sio
|
3 |
+
|
4 |
+
pipe = sio.load("glass_pipeline.skops", trusted=True)
|
5 |
+
|
6 |
+
classes = [
|
7 |
+
"None",
|
8 |
+
"Building Windows Float Processed",
|
9 |
+
"Building Windows Non Float Processed",
|
10 |
+
"Vehicle Windows Float Processed",
|
11 |
+
"Vehicle Windows Non Float Processed",
|
12 |
+
"Containers",
|
13 |
+
"Tableware",
|
14 |
+
"Headlamps",
|
15 |
+
]
|
16 |
+
|
17 |
+
def classifier(RI, Na, Mg, Al, Si, K, Ca, Ba, Fe):
|
18 |
+
pred_glass = pipe.predict([[RI, Na, Mg, Al, Si, K, Ca, Ba, Fe]])[0]
|
19 |
+
label = f"Predicted Glass label: **{classes[pred_glass]}**"
|
20 |
+
return label
|
21 |
+
|
22 |
+
|
23 |
+
|
24 |
+
inputs = [
|
25 |
+
gr.Slider(1.51, 1.54, step=0.01, label="Refractive Index"),
|
26 |
+
gr.Slider(10, 17, step=1, label="Sodium"),
|
27 |
+
gr.Slider(0, 4.5, step=0.5, label="Magnesium"),
|
28 |
+
gr.Slider(0.3, 3.5, step=0.1, label="Aluminum"),
|
29 |
+
gr.Slider(69.8, 75.4, step=0.1, label="Silicon"),
|
30 |
+
gr.Slider(0, 6.2, step=0.1, label="Potassium"),
|
31 |
+
gr.Slider(5.4, 16.19, step=0.1, label="Calcium"),
|
32 |
+
gr.Slider(0, 3, step=0.1, label="Barium"),
|
33 |
+
gr.Slider(0, 0.5, step=0.1, label="Iron"),
|
34 |
+
]
|
35 |
+
outputs = [gr.Label(num_top_classes=7)]
|
36 |
+
|
37 |
+
|
38 |
+
|
39 |
+
title = "Glass Classification"
|
40 |
+
description = "Enter the details to correctly identify glass type?"
|
41 |
+
|
42 |
+
|
43 |
+
|
44 |
+
gr.Interface(
|
45 |
+
fn=classifier,
|
46 |
+
inputs=inputs,
|
47 |
+
outputs=outputs,
|
48 |
+
title=title,
|
49 |
+
description=description,
|
50 |
+
).launch(share=True)
|
glass_pipeline.skops
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ab023756f28c9602f110e3b1854ad0122c172abbcf383efc97d6e31a61dfd86f
|
3 |
+
size 2855349
|