In the previous article, we defined the forward pass for our neural network.
Now, we will provide inputs to the network so that we can test whether it works correctly.
Creating Input Values
To create a sequence of input values, we can define them like this:
input_doses = torch.linspace(start=0, end=1, steps=11)











