Onnxify.ProjectGenerator
0.1.0
dotnet add package Onnxify.ProjectGenerator --version 0.1.0
NuGet\Install-Package Onnxify.ProjectGenerator -Version 0.1.0
<PackageReference Include="Onnxify.ProjectGenerator" Version="0.1.0" />
<PackageVersion Include="Onnxify.ProjectGenerator" Version="0.1.0" />
<PackageReference Include="Onnxify.ProjectGenerator" />
paket add Onnxify.ProjectGenerator --version 0.1.0
#r "nuget: Onnxify.ProjectGenerator, 0.1.0"
#:package Onnxify.ProjectGenerator@0.1.0
#addin nuget:?package=Onnxify.ProjectGenerator&version=0.1.0
#tool nuget:?package=Onnxify.ProjectGenerator&version=0.1.0
Warning This package is currently in active development and research. Its public API is unstable and may change radically in future versions.
Onnxify.ProjectGenerator
Onnxify.ProjectGenerator generates C# project output from an existing ONNX model so you can reconstruct or inspect that model through Onnxify code.
Install
dotnet add package Onnxify.ProjectGenerator
What It Provides
- Generate C# project scaffolding from an
.onnxfile. - Generate C# project scaffolding directly from an already loaded
OnnxModel. - Emit code that recreates model structure through the
OnnxifyAPI. - Provide a programmable alternative to the CLI generation workflow.
Notes
If you prefer a command-line workflow, the repository also ships Onnxify.CLI as a dotnet tool.
Repository
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
## 0.0.0.1
- Initial release
- Added an `OnnxProjectGenerator.Generate(OnnxModel, ProjectGeneratorOptions)` overload so project generation can start from an in-memory model without first saving it to disk.