Your task is to implement the Stochastic Gradient Descent (SGD) optimization algorithm from scratch in Python and use it to train a linear regression model. SGD is a widely used optimization method in machine learning. In this problem, you will write a Python function to perform a single update step of SGD for a given set of model parameters. Additionally, you will implement the computation of gradients using backpropagation.
For this purpose, you will use a linear regression model with a single feedforward layer. The input to your method will be a set of feature-output pairs, and your implementation should handle the parameter updates accordingly.