Registry / other / gorgonia

gorgonia

JSON →
library0.9.18gogounverified

Gorgonia is a library that helps facilitate machine learning in Go, providing primitives for creating and executing computation graphs.

go get gorgonia.org/gorgonia
INSTALL
IMPORT
SIG · GORGONIA
G
gorgonia
othergov0.9.18
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

gorgonia
gorgonia.org/gorgonia

Create a computation graph and perform addition.

package main import ( "fmt" "gorgonia.org/gorgonia" ) func main() { g := gorgonia.NewGraph() x := gorgonia.NewScalar(g, gorgonia.Float64, gorgonia.WithName("x")) y := gorgonia.NewScalar(g, gorgonia.Float64, gorgonia.WithName("y")) z, _ := gorgonia.Add(x, y) fmt.Println(z) }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
0.9.18latest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
12 hits · last 30 days
node
10
Meta
1
Amazon
1
Resources
gorgonia — go get gorgonia · libregistry