split into two models, one is resnet to extract feature, one is compatibility model

This commit is contained in:
pangkaicheng
2024-03-28 10:36:44 +08:00
parent 2b5dce50bb
commit 300dc60673
6 changed files with 219 additions and 137 deletions

View File

@@ -27,8 +27,10 @@ MINIO_SECURE = False
MINIO_ACCESS = "e8zc55mzDOh4IzRrZ9Oa"
MINIO_SECRET = "uHfqJ7UkwA1PTDGfnA44Hp9ux5YkZTkzZLjeOYhE"
OM_TRITON_IP = "10.1.1.150"
OM_TRITON_PORT = "7000"
# OM_TRITON_IP = "10.1.1.150"
# OM_TRITON_PORT = "7000"
OM_TRITON_IP = "127.0.0.1"
OM_TRITON_PORT = "8000"
ATT_TRITON_IP = "10.1.1.150"
ATT_TRITON_PORT = "6000"
@@ -40,5 +42,5 @@ ATT_TRITON_PORT = "6000"
# pycharm debug
LOGSPATH = "logs/errors.log"
FASHION_CATEGORIES = "service/outfit_matcher/config/fashion_categories.json"
FASHION_CATEGORIES_MAPPING = "service/outfit_matcher/config/fashion_category_mapping.json"
FASHION_CATEGORIES = "config/fashion_categories.json"
FASHION_CATEGORIES_MAPPING = "config/fashion_category_mapping.json"