From b8fde4de4b54378cfe3e6fe1744ecd6e10bc5193 Mon Sep 17 00:00:00 2001 From: Jason Kneen <jason.kneen@bouncingfish.com> Date: Tue, 13 Aug 2024 13:11:51 +0100 Subject: [PATCH] Update README.md --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9a0334d..0579919 100644 --- a/README.md +++ b/README.md @@ -78,19 +78,20 @@ python run.py --execution-provider coreml ``` ### [](https://github.com/s0md3v/roop/wiki/2.-Acceleration#coreml-execution-provider-apple-legacy)CoreML Execution Provider (Apple Legacy) +Metal support has been added for improved performance on macOS devices. 1. Install dependencies: ``` -pip uninstall onnxruntime onnxruntime-coreml -pip install onnxruntime-coreml==1.13.1 +pip uninstall onnxruntime onnxruntime-silicon +pip install onnxruntime-silicon==1.13.1 ``` 2. Usage in case the provider is available: ``` -python run.py --execution-provider coreml +python run.py --execution-provider metal ```