Update src/streamlit_app.py
Browse files- src/streamlit_app.py +1 -1
src/streamlit_app.py
CHANGED
|
@@ -96,7 +96,7 @@ Z_DIM = 100
|
|
| 96 |
NGF = 64
|
| 97 |
NUM_CLASSES = 10
|
| 98 |
IMAGE_SIZE = 32
|
| 99 |
-
MODEL_FILE = "Raygan-zalando_datasetsgen.pth"
|
| 100 |
|
| 101 |
class_names = [
|
| 102 |
"T-shirt/top", "Trouser", "Pullover", "Dress", "Coat",
|
|
|
|
| 96 |
NGF = 64
|
| 97 |
NUM_CLASSES = 10
|
| 98 |
IMAGE_SIZE = 32
|
| 99 |
+
MODEL_FILE = os.path.join(os.path.dirname(__file__), "Raygan-zalando_datasetsgen.pth")
|
| 100 |
|
| 101 |
class_names = [
|
| 102 |
"T-shirt/top", "Trouser", "Pullover", "Dress", "Coat",
|