← OpenFluke

Chapter 37

systems/telemetry

github.com/openfluke/welvet/systems/telemetry


Why it exists

Static structural blueprints (sizes, op kinds) differ from live tanhi events.

What it is

ExtractNetworkBlueprint, ExtractLayerTelemetry for introspection/UIs.

Go example

examples/37-telemetry/main.go

Run:cd welvet/examples/37-telemetry && source ../env.sh && go run .
package main

import (
	"fmt"

	"github.com/openfluke/welvet/architecture"
	"github.com/openfluke/welvet/systems/telemetry"
)

func main() {
	g := architecture.NewGrid(1, 1, 1, 1)
	bp := telemetry.ExtractNetworkBlueprint(g, "demo")
	fmt.Printf("%+v\n", bp)
}

Output

exit 0 · last run via go run .

{ID:demo TotalLayers:1 TotalParams:0 Layers:[{Z:0 Y:0 X:0 L:0 Type:Dense Activation:ReLU Parameters:0 InputShape:[] OutputShape:[] Branches:[] CombineMode:}]}