detect: pubish betas

This commit is contained in:
Koushik Dutta
2026-01-08 09:13:42 -08:00
parent 126c96904b
commit beb7ec60ba
13 changed files with 30 additions and 41 deletions

View File

@@ -29,10 +29,10 @@ predictExecutor = concurrent.futures.ThreadPoolExecutor(1, "CoreML-Predict")
availableModels = [
"Default",
"scrypted_yolov9t_relu_test",
"scrypted_yolov9c_relu_320",
"scrypted_yolov9m_relu_320",
"scrypted_yolov9s_relu_320",
"scrypted_yolov9t_relu_320",
"scrypted_yolov9c_relu",
"scrypted_yolov9m_relu",
"scrypted_yolov9s_relu",
"scrypted_yolov9t_relu",
]

View File

@@ -43,7 +43,7 @@ class CoreMLFaceRecognition(FaceRecognizeDetection):
for f in files:
p = self.downloadFile(
f"https://github.com/koush/coreml-models/raw/main/{f}",
f"https://huggingface.co/scrypted/plugin-models/resolve/main/coreml/{f}",
f"{model_version}/{f}",
)
modelFile = os.path.dirname(p)