![]() |
VOOZH | about |
dotnet add package YoloDotNet.ExecutionProvider.Cpu --version 1.1.0
NuGet\Install-Package YoloDotNet.ExecutionProvider.Cpu -Version 1.1.0
<PackageReference Include="YoloDotNet.ExecutionProvider.Cpu" Version="1.1.0" />
<PackageVersion Include="YoloDotNet.ExecutionProvider.Cpu" Version="1.1.0" />Directory.Packages.props
<PackageReference Include="YoloDotNet.ExecutionProvider.Cpu" />Project file
paket add YoloDotNet.ExecutionProvider.Cpu --version 1.1.0
#r "nuget: YoloDotNet.ExecutionProvider.Cpu, 1.1.0"
#:package YoloDotNet.ExecutionProvider.Cpu@1.1.0
#addin nuget:?package=YoloDotNet.ExecutionProvider.Cpu&version=1.1.0Install as a Cake Addin
#tool nuget:?package=YoloDotNet.ExecutionProvider.Cpu&version=1.1.0Install as a Cake Tool
YoloDotNet uses modular execution providers to run inference on different hardware backends. Each provider targets a specific platform or accelerator and may require additional system-level dependencies such as runtimes, drivers, or SDKs.
Installing the NuGet package alone is not always sufficient — proper setup depends on the selected provider and the target system.
This document describes the installation, requirements, and usage of the CPU execution provider.
All execution providers require the core YoloDotNet package, which contains the shared inference pipeline, models, and APIs.
dotnet add package YoloDotNet
The CPU execution provider runs inference on the system CPU using ONNX Runtime’s built-in CPU backend.
It is the most portable execution provider and requires no additional dependencies.
Notes:
No additional installation or configuration is required.
Install the NuGet package and run your application — that’s it.
YoloDotNet.ExecutionProvider.Cpu v1.1 requires YoloDotNet version 4.1.
dotnet add package YoloDotNet.ExecutionProvider.Cpu
using YoloDotNet;
using YoloDotNet.ExecutionProvider.Cpu;
using var yolo = new Yolo(new YoloOptions
{
ExecutionProvider = new CpuExecutionProvider(model: "path/to/model.onnx"),
// ...other options
});
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 net8.0 is compatible. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
Showing the top 1 NuGet packages that depend on YoloDotNet.ExecutionProvider.Cpu:
| Package | Downloads |
|---|---|
|
CoinDetectionYOLO
Package Description |
This package is not used by any popular GitHub repositories.
This release updates the internal execution provider architecture to align with YoloDotNet v4.1. Model parsing and validation are now handled exclusively by the YoloDotNet core library, simplifying execution provider implementations and ensuring consistent model handling across all backends. This execution provider requires YoloDotNet version 4.1.