关于保存特征的一些代码

This commit is contained in:
zchen
2024-03-26 18:00:35 +08:00
parent 7dce70027a
commit 88c815dd9d
16 changed files with 378 additions and 10 deletions

View File

@@ -27,18 +27,23 @@ MINIO_SECURE = False
MINIO_ACCESS = "e8zc55mzDOh4IzRrZ9Oa"
MINIO_SECRET = "uHfqJ7UkwA1PTDGfnA44Hp9ux5YkZTkzZLjeOYhE"
OM_TRITON_IP = "10.1.1.240"
OM_TRITON_PORT = "10010"
OM_TRITON_IP = "10.1.1.150"
OM_TRITON_PORT = "9000"
ATT_TRITON_IP = "10.1.1.240"
ATT_TRITON_PORT = "10020"
# service env
LOGS_PATH = "app/logs/errors.log"
FASHION_CATEGORIES = "app/service/outfit_matcher/config/fashion_categories.json"
FASHION_CATEGORIES_MAPPING = "app/service/outfit_matcher/config/fashion_category_mapping.json"
# LOGS_PATH = "app/logs/errors.log"
# FASHION_CATEGORIES = "app/service/outfit_matcher/config/fashion_categories.json"
# FASHION_CATEGORIES_MAPPING = "app/service/outfit_matcher/config/fashion_category_mapping.json"
# pycharm debug
# LOGS_PATH = "logs/errors.log"
# FASHION_CATEGORIES = "service/outfit_matcher/config/fashion_categories.json"
# FASHION_CATEGORIES_MAPPING = "service/outfit_matcher/config/fashion_category_mapping.json"
LOGS_PATH = "app/logs/errors.log"
FASHION_CATEGORIES = "./config/fashion_categories.json"
FASHION_CATEGORIES_MAPPING = "./config/fashion_category_mapping.json"