Please excuse me if my wording is bad. I am trying to get a hold of the concepts. To minimize the loss function for real values, we can use SVD to solve the following:
$\arg \min_{A, B \in \mathcal{B}} \sum_{i,j} (A[i,] \times B[,j] - X[i,j])^2$
To minimize a logistic loss function, however, I am not sure how to handle it:
$\arg \min_{b} \sum_{i=1}^n \log(1+\exp(b^T a_i)) - x_i b^T a_i$
Since it is not the same form as above due to the exponential, we can't just use the solution analogously. I have tried taking the derivative and setting it to 0, but I am just stuck now. Any ideas?
EDIT: Please note that I am not necessarily looking for an analytical solution. A numerical one is fine. For instance, I have heard of alternating minimization, but how do I use it in this context?