Commit ·
22677f7
1
Parent(s): 3f86a11
updated new sku name for version 12
Browse files
Data/__pycache__/__init__.cpython-311.pyc
DELETED
|
Binary file (173 Bytes)
|
|
|
Data/__pycache__/data.cpython-311.pyc
DELETED
|
Binary file (5.28 kB)
|
|
|
Data/__pycache__/model.cpython-311.pyc
DELETED
|
Binary file (382 Bytes)
|
|
|
Data/data.py
CHANGED
|
@@ -229,6 +229,7 @@ upay_items = [
|
|
| 229 |
"upay_fastoon_dpdc", # new v5
|
| 230 |
"upay_fastoon_price_new", # new v5
|
| 231 |
"upay_fastoon_water_bill", # new v5
|
|
|
|
| 232 |
]
|
| 233 |
|
| 234 |
|
|
@@ -342,6 +343,7 @@ uddoktaSKU = [
|
|
| 342 |
"upay_sticker_shutter",
|
| 343 |
"upay_poster_lenden",
|
| 344 |
"upay_shop_banner",
|
|
|
|
| 345 |
]
|
| 346 |
|
| 347 |
marchentSKU = [
|
|
|
|
| 229 |
"upay_fastoon_dpdc", # new v5
|
| 230 |
"upay_fastoon_price_new", # new v5
|
| 231 |
"upay_fastoon_water_bill", # new v5
|
| 232 |
+
"v12_upay_poster_kyc", # new v12
|
| 233 |
]
|
| 234 |
|
| 235 |
|
|
|
|
| 343 |
"upay_sticker_shutter",
|
| 344 |
"upay_poster_lenden",
|
| 345 |
"upay_shop_banner",
|
| 346 |
+
"v12_upay_poster_kyc",
|
| 347 |
]
|
| 348 |
|
| 349 |
marchentSKU = [
|
Data/model.py
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
from ultralytics import YOLO
|
| 2 |
-
uddoktaModel = YOLO('AI_Model/uddokta_v11.
|
| 3 |
-
marchentModel = YOLO('AI_Model/marchent_v12.
|
| 4 |
|
| 5 |
uddoktaModel.to(device=0)
|
| 6 |
marchentModel.to(device=0)
|
|
|
|
| 1 |
from ultralytics import YOLO
|
| 2 |
+
uddoktaModel = YOLO('AI_Model/uddokta_v11.2.pt').cuda()
|
| 3 |
+
marchentModel = YOLO('AI_Model/marchent_v12.2.pt').cuda()
|
| 4 |
|
| 5 |
uddoktaModel.to(device=0)
|
| 6 |
marchentModel.to(device=0)
|