Update app.py
Browse files
app.py
CHANGED
@@ -16,6 +16,9 @@ import torch.nn.functional as F
|
|
16 |
|
17 |
DESCRIPTION = '# [Age Estimation](https://github.com/yu4u/age-estimation-pytorch)'
|
18 |
|
|
|
|
|
|
|
19 |
ssd_net = cv2.dnn.readNetFromCaffe('deploy.prototxt', 'Res10_300x300_SSD_iter_140000.caffemodel')
|
20 |
|
21 |
|
|
|
16 |
|
17 |
DESCRIPTION = '# [Age Estimation](https://github.com/yu4u/age-estimation-pytorch)'
|
18 |
|
19 |
+
print("Current directory:", os.getcwd())
|
20 |
+
print("Files in the current directory:", os.listdir('.'))
|
21 |
+
|
22 |
ssd_net = cv2.dnn.readNetFromCaffe('deploy.prototxt', 'Res10_300x300_SSD_iter_140000.caffemodel')
|
23 |
|
24 |
|