The W_know weight matrix from MEGAMIND's neural substrate.
Dimensions: 8192 x 8192
Format: Binary (float64, little-endian)
Size: ~512 MB
Download and load in Go:
data, _ := os.ReadFile("w_know.bin")
neurons := int(math.Sqrt(float64(len(data) / 8)))
weights := make([]float64, neuronsneurons)
for i := range weights {
bits := binary.LittleEndian.Uint64(data[i8 : (i+1)*8])
weights[i] = math.Float64frombits(bits)
}