CSE 4311 - Assignments - Assignment 2
Neural Network File Format

This is a description of the format of files such as nn_xor.txt and nn2.txt, which are used in the nn_forward. Each such file specifies the topology and weights of a fully connected neural network. In a fully connected network, all layers (except for the input layer) are fully connected, meaning that all units of a layer receive inputs from all units in the previous layer.

In the following specifications, red color indicates placeholders that are replaced by actual numbers in the file:


CSE 4311 - Assignments - Assignment 2