Neural Networks using PyTorch

Instantiating a Neural Network

The following code instan
network = nn.Sequential( nn.Linear(1, 5), nn.Tanh(), nn.Linear(5,1) )