Update README.md

pull/286/head
Jason Kneen 2024-08-13 13:11:51 +01:00
parent 359848a54e
commit 68fc4579a9
1 changed files with 4 additions and 3 deletions

View File

@ -74,19 +74,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) ### [](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: 1. Install dependencies:
``` ```
pip uninstall onnxruntime onnxruntime-coreml pip uninstall onnxruntime onnxruntime-silicon
pip install onnxruntime-coreml==1.13.1 pip install onnxruntime-silicon==1.13.1
``` ```
2. Usage in case the provider is available: 2. Usage in case the provider is available:
``` ```
python run.py --execution-provider coreml python run.py --execution-provider metal
``` ```