Spaces:
Build error
Build error
Commit ·
084852b
1
Parent(s): 36c8c04
torch model
Browse files- app.py +39 -12
- model.pkl → porsche_model.pth +2 -2
app.py
CHANGED
|
@@ -1,18 +1,45 @@
|
|
| 1 |
import gradio as gr
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
|
| 4 |
-
|
| 5 |
-
|
| 6 |
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
|
|
|
| 12 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
|
| 14 |
-
|
| 15 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
|
| 17 |
-
|
| 18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
import gradio as gr
|
| 2 |
+
import torch
|
| 3 |
+
from PIL import Image
|
| 4 |
+
from torchvision import transforms
|
| 5 |
+
import torchvision.models as models
|
| 6 |
+
import torch.nn as nn
|
| 7 |
|
| 8 |
+
# Define the class names
|
| 9 |
+
class_names = ['911', 'cayenne', 'cayman', 'macan', 'panamera', 'taycan']
|
| 10 |
|
| 11 |
+
# Instantiate the model and load state_dict
|
| 12 |
+
model_ft = models.resnet34(weights=models.ResNet34_Weights.DEFAULT)
|
| 13 |
+
for param in model_ft.parameters():
|
| 14 |
+
param.requires_grad = False
|
| 15 |
+
for param in model_ft.layer4.parameters():
|
| 16 |
+
param.requires_grad = True
|
| 17 |
|
| 18 |
+
num_ftrs = model_ft.fc.in_features
|
| 19 |
+
model_ft.fc = nn.Linear(num_ftrs, len(class_names))
|
| 20 |
+
model_ft = model_ft.to('cuda' if torch.cuda.is_available() else 'cpu')
|
| 21 |
+
model_ft.load_state_dict(torch.load('model_ft.pth'))
|
| 22 |
+
model_ft.eval()
|
| 23 |
|
| 24 |
+
# Define preprocessing transforms
|
| 25 |
+
preprocess = transforms.Compose([
|
| 26 |
+
transforms.Resize(256),
|
| 27 |
+
transforms.CenterCrop(224),
|
| 28 |
+
transforms.ToTensor(),
|
| 29 |
+
transforms.Normalize([0.485, 0.456, 0.406], [0.229, 0.224, 0.225])
|
| 30 |
+
])
|
| 31 |
|
| 32 |
+
# Define the prediction function
|
| 33 |
+
def predict(image):
|
| 34 |
+
image = preprocess(image).unsqueeze(0).to(model_ft.device) # Add batch dimension and move to device
|
| 35 |
+
with torch.no_grad():
|
| 36 |
+
outputs = model_ft(image)
|
| 37 |
+
_, predicted = torch.max(outputs, 1)
|
| 38 |
+
return class_names[predicted.item()]
|
| 39 |
+
|
| 40 |
+
# Create Gradio interface
|
| 41 |
+
iface = gr.Interface(fn=predict,
|
| 42 |
+
inputs=gr.inputs.Image(type="pil"),
|
| 43 |
+
outputs="text")
|
| 44 |
+
|
| 45 |
+
iface.launch()
|
model.pkl → porsche_model.pth
RENAMED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9506b43b2d24c94d97a2e4767cb1b05f84132373579fc7bdd8fb775bbc9dc9c5
|
| 3 |
+
size 85292402
|