Dave-A commited on
Commit
67d2f1c
·
1 Parent(s): 9a0efb4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -22,6 +22,10 @@ import matplotlib.pyplot as plt
22
  import seaborn as sns
23
  from albumentations.pytorch.transforms import ToTensorV2
24
 
 
 
 
 
25
  st.title("some big ML function")
26
 
27
  uploaded_file = st.file_uploader("Choose a file")
 
22
  import seaborn as sns
23
  from albumentations.pytorch.transforms import ToTensorV2
24
 
25
+ model = models.resnet50(pretrained=False)
26
+ model.fc = nn.Linear(2048, num_classes)
27
+ model.load_state_dict(torch.load('resnet_best.pth'), strict=True)
28
+
29
  st.title("some big ML function")
30
 
31
  uploaded_file = st.file_uploader("Choose a file")