Skip to content

Commit

Permalink
predict: move face/text recognition into separate models
Browse files Browse the repository at this point in the history
  • Loading branch information
koush committed Apr 23, 2024
1 parent 4d98ccf commit 167c66f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/coreml/src/coreml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ async def prepareRecognitionModels(self):
try:
devices = [
{
"nativeId": "recognition",
"nativeId": "facerecognition",
"type": scrypted_sdk.ScryptedDeviceType.Builtin.value,
"interfaces": [
scrypted_sdk.ScryptedInterface.ObjectDetection.value,
Expand Down
2 changes: 1 addition & 1 deletion plugins/openvino/src/ov/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ async def prepareRecognitionModels(self):
try:
devices = [
{
"nativeId": "recognition",
"nativeId": "facerecognition",
"type": scrypted_sdk.ScryptedDeviceType.Builtin.value,
"interfaces": [
scrypted_sdk.ScryptedInterface.ObjectDetection.value,
Expand Down

0 comments on commit 167c66f

Please sign in to comment.