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
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
{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:}]}