mulasagg commited on
Commit
c188c50
·
1 Parent(s): a840bda

push files to HF

Browse files
Pretrained_effnet_v2_20_percent.pth ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82735be79ee9b68d3dc2b9239e7da6c2a49d51bef16fedc6ab36596c7ea4be22
3
+ size 31286586
app.py ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import gradio as gr
3
+ import os
4
+ import torch
5
+
6
+ from model import create_effnetb2_model
7
+ from timeit import default_timer as timer
8
+ from typing import Tuple, Dict
9
+
10
+ #setup class_names
11
+ class_names = ["pizza", "steak", "sushi"]
12
+
13
+ #create effnet model
14
+ effnetb2, effnetb2_transforms = create_effnetb2_model(
15
+ num_classes=3, # len(class_names) would also work
16
+ )
17
+
18
+ #load saved weights
19
+ effnetb2.load_state_dict(
20
+ torch.load(
21
+ f="demos/foodvision_mini/Pretrained_effnet_v2_20_percent.pth,
22
+ map_location=torch.device("cpu"), # load to CPU
23
+ )
24
+ )
25
+
26
+ ### 3. Predict function ###
27
+
28
+ # Create predict function
29
+ def predict(img) -> Tuple[Dict, float]:
30
+ """Transforms and performs a prediction on img and returns prediction and time taken.
31
+ """
32
+ # Start the timer
33
+ start_time = timer()
34
+
35
+ # Transform the target image and add a batch dimension
36
+ img = effnetb2_transforms(img).unsqueeze(0)
37
+
38
+ # Put model into evaluation mode and turn on inference mode
39
+ effnetb2.eval()
40
+ with torch.inference_mode():
41
+ # Pass the transformed image through the model and turn the prediction logits into prediction probabilities
42
+ pred_probs = torch.softmax(effnetb2(img), dim=1)
43
+
44
+ # Create a prediction label and prediction probability dictionary for each prediction class (this is the required format for Gradio's output parameter)
45
+ pred_labels_and_probs = {class_names[i]: float(pred_probs[0][i]) for i in range(len(class_names))}
46
+
47
+ # Calculate the prediction time
48
+ pred_time = round(timer() - start_time, 5)
49
+
50
+ # Return the prediction dictionary and prediction time
51
+ return pred_labels_and_probs, pred_time
52
+
53
+ ### 4. Gradio app ###
54
+
55
+ # Create title, description and article strings
56
+ title = "FoodVision Mini 🍕🥩🍣"
57
+ description = "An EfficientNetB2 feature extractor computer vision model to classify images of food as pizza, steak or sushi."
58
+
59
+
60
+ # Create examples list from "examples/" directory
61
+ example_list = [["examples/" + example] for example in os.listdir("examples")]
62
+
63
+ # Create the Gradio demo
64
+ demo = gr.Interface(fn=predict, # mapping function from input to output
65
+ inputs=gr.Image(type="pil"), # what are the inputs?
66
+ outputs=[gr.Label(num_top_classes=3, label="Predictions"), # what are the outputs?
67
+ gr.Number(label="Prediction time (s)")], # our fn has two outputs, therefore we have two outputs
68
+ # Create examples list from "examples/" directory
69
+ examples=example_list,
70
+ title=title,
71
+ description=description)
72
+
73
+ # Launch the demo!
74
+ demo.launch()
examples/2582289.jpg ADDED
examples/3622237.jpg ADDED
examples/592799.jpg ADDED
model.py ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ import torch
3
+ import torchvision
4
+ from torch import nn
5
+
6
+ def create_effnetb2_model(num_classes:int=3,
7
+ seed:int=42):
8
+ """Creates an EfficientNetB2 feature extractor model and transforms.
9
+
10
+ Args:
11
+ num_classes (int, optional): number of classes in the classifier head.
12
+ Defaults to 3.
13
+ seed (int, optional): random seed value. Defaults to 42.
14
+
15
+ Returns:
16
+ model (torch.nn.Module): EffNetB2 feature extractor model.
17
+ transforms (torchvision.transforms): EffNetB2 image transforms.
18
+ """
19
+ # Create EffNetB2 pretrained weights, transforms and model
20
+ weights = torchvision.models.EfficientNet_B2_Weights.DEFAULT
21
+ transforms = weights.transforms()
22
+ model = torchvision.models.efficientnet_b2(weights=weights)
23
+
24
+ # Freeze all layers in base model
25
+ for param in model.parameters():
26
+ param.requires_grad = False
27
+
28
+ # Change classifier head with random seed for reproducibility
29
+ torch.manual_seed(seed)
30
+ model.classifier = nn.Sequential(
31
+ nn.Dropout(p=0.3, inplace=True),
32
+ nn.Linear(in_features=1408, out_features=num_classes),
33
+ )
34
+
35
+ return model, transforms
requirements.txt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ torch==2.5.1
2
+ torchvision==0.20.1
3
+ gradio==5.6.0