Update app.py
Browse files
app.py
CHANGED
@@ -7,7 +7,7 @@ from timeit import default_timer as timer
|
|
7 |
from typing import Tuple, Dict
|
8 |
import torch
|
9 |
import torchvision
|
10 |
-
|
11 |
from torch import nn
|
12 |
# Setup class names
|
13 |
with open("class_names.txt", "r") as f: # reading them in from class_names.txt
|
|
|
7 |
from typing import Tuple, Dict
|
8 |
import torch
|
9 |
import torchvision
|
10 |
+
from torchvision import transforms
|
11 |
from torch import nn
|
12 |
# Setup class names
|
13 |
with open("class_names.txt", "r") as f: # reading them in from class_names.txt
|