package
0.5.0
Repository: https://github.com/owulveryck/onnx-go.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author

# README

Backend

This directory contains (sample) backend implementation.

Any backend implementing a computation method (symbolic or not) should fulfil the ComputationBackend interface:

type ComputationBackend interface {
	onnx.Backend
	Run() error
}

Unit tests are exposed in the testbackend package.