You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A guide that explains how programs transform from source code to executables. Deep dive into ELF format, linking processes, and binary optimization techniques. Perfect for systems programmers, C developers, and anyone interested in low-level programming concepts.
Academic-level implementation of a feedforward neural network in pure C (no external ML libs). Features dynamic architecture, multiple activation functions, and manual backpropagation with gradient descent. Trains on the XOR problem, showcasing core ML concepts like forward propagation, error calculation, and weight updates.