linear_obj
linear_obj(params, gradient, X, y)Least Squares Loss for Linear Regression.
Args: params (Coefficint vector): ndarray of coefficients gradient (type): pointer to the gradient vector X (ndarray): covariate matrix y (ndarray): response vector
Returns: type: description