Skip to content

Commit

Permalink
fix: Temporarily disable CoreML execution provider
Browse files Browse the repository at this point in the history
- Add `and False` condition to prevent CoreML provider from being used
  • Loading branch information
awwaawwa committed Feb 18, 2025
1 parent 3c7d11a commit 361a51a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion babeldoc/docvision/doclayout.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def __init__(self, data=None, xyxy=None, conf=None, cls=None):

providers = []

if os_name == "Darwin": # Temporarily disable CoreML due to batch inference issues
if os_name == "Darwin" and False: # Temporarily disable CoreML due to some issues
providers.append(
(
"CoreMLExecutionProvider",
Expand Down

0 comments on commit 361a51a

Please sign in to comment.