Spaces:
Sleeping
Sleeping
Commit
·
e242a23
1
Parent(s):
bc3305b
Upload 4 files
Browse files- app.py +47 -0
- requirements.txt +4 -0
- scaler.pkl +3 -0
- svm_model.pkl +3 -0
app.py
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
import joblib
|
3 |
+
import numpy as np
|
4 |
+
from PIL import Image
|
5 |
+
from sklearn.preprocessing import StandardScaler
|
6 |
+
|
7 |
+
# Load the trained SVM model and scaler
|
8 |
+
clf = joblib.load('svm_model.pkl')
|
9 |
+
scaler = joblib.load('scaler.pkl')
|
10 |
+
|
11 |
+
# Define a function to preprocess and classify the image
|
12 |
+
def classify_image(input_image):
|
13 |
+
# Check if the input is a NumPy array
|
14 |
+
if isinstance(input_image, np.ndarray):
|
15 |
+
# Preprocess the input image
|
16 |
+
image = Image.fromarray(input_image)
|
17 |
+
image = image.resize((64, 64))
|
18 |
+
image = np.array(image)
|
19 |
+
image = image / 255.0 # Normalize the pixel values
|
20 |
+
flattened_image = image.flatten()
|
21 |
+
|
22 |
+
# Scale the image using the same scaler used during training
|
23 |
+
scaled_image = scaler.transform([flattened_image])
|
24 |
+
|
25 |
+
# Make a prediction using the SVM model
|
26 |
+
prediction = clf.predict(scaled_image)
|
27 |
+
|
28 |
+
# Interpret the prediction
|
29 |
+
if prediction[0] == 1:
|
30 |
+
label = "Cat"
|
31 |
+
else:
|
32 |
+
label = "Dog"
|
33 |
+
|
34 |
+
return label
|
35 |
+
else:
|
36 |
+
return "Invalid input. Please provide a valid image."
|
37 |
+
|
38 |
+
# Create a Gradio interface
|
39 |
+
iface = gr.Interface(fn=classify_image,
|
40 |
+
inputs="image",
|
41 |
+
outputs="text",
|
42 |
+
live=True,
|
43 |
+
capture_session=True)
|
44 |
+
|
45 |
+
|
46 |
+
# Launch the Gradio interface
|
47 |
+
iface.launch(server_name="0.0.0.0", server_port=7860)
|
requirements.txt
ADDED
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
1 |
+
gradio
|
2 |
+
scikit-learn==1.2.2
|
3 |
+
numpy
|
4 |
+
|
scaler.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ac42b73f2d17f8a226959fa8f8852aab1154b5446120eb4efbc911df3285255b
|
3 |
+
size 295527
|
svm_model.pkl
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c338ac3007ce5734f81115a7574ed6439ef621db6b34fae9a4318c69943fc46f
|
3 |
+
size 196649375
|