Update app.py
Browse files
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")
|