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

# 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.

# Packages

Package simple holds a very simple graph structure suitable to receive an onnx model.
Package testbackend provides a set of testing helper functions that test backend interface implementations.
No description provided by the author

# Interfaces

ComputationBackend is a backend that can run the graph.