瀏覽代碼

make lazy loading default (#3797)

Mert 1 年之前
父節點
當前提交
60729a091a
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      machine-learning/app/config.py

+ 1 - 1
machine-learning/app/config.py

@@ -12,7 +12,7 @@ class Settings(BaseSettings):
     clip_text_model: str = "clip-ViT-B-32"
     facial_recognition_model: str = "buffalo_l"
     min_tag_score: float = 0.9
-    eager_startup: bool = True
+    eager_startup: bool = False
     model_ttl: int = 0
     host: str = "0.0.0.0"
     port: int = 3003