push_231009003515
Browse files- MODELS/180_3000.pth +3 -0
- MODELS/v1100.pth +3 -0
- MODELS/v3_8000.pth +3 -0
- app.py +3 -3
MODELS/180_3000.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a71ba8b5d70e2599cdb19ca76b82eec2a25420ed7a24893fe67af6d6b1a64ab8
|
3 |
+
size 629528157
|
MODELS/v1100.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c6bdfbd00d5ad74b51e38fcefc2001367557a2072ccadeed0f7e9f89e72a3818
|
3 |
+
size 629528157
|
MODELS/v3_8000.pth
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f9b3ec8e49f19a41ef6601a35d3cd5bed2f0a5fa3d7c90c064726206675aa746
|
3 |
+
size 629528157
|
app.py
CHANGED
@@ -15,9 +15,9 @@ import pytz
|
|
15 |
|
16 |
net_g = None
|
17 |
models = {
|
18 |
-
"V1": "v1100.pth",
|
19 |
-
"V2": "180_3000.pth",
|
20 |
-
"V3":"v3_8000.pth"
|
21 |
|
22 |
}
|
23 |
|
|
|
15 |
|
16 |
net_g = None
|
17 |
models = {
|
18 |
+
"V1": "./MODELS/v1100.pth",
|
19 |
+
"V2": "./MODELS/180_3000.pth",
|
20 |
+
"V3":"./MODELS/v3_8000.pth"
|
21 |
|
22 |
}
|
23 |
|