Matlab taking too much time to give output
이전 댓글 표시
I'm solving a convex optimization problem which has to minimize a variable matrix of 498x498 size. As I run it, it is taking forever to give final value of x. When I terminate the process in between it shows like this

my code is
function f= coheren(x)
load ('Dictionary.mat','D');
Z = (D)*(D');
[V, U,W]=svd(Z);
a = mtimes(U,V');
b = mtimes(V,U);
f = (norm(U-(a*(x')*(x)*b)))^2;
end
function [c,ceq] = cohcon(x)
load ('Dictionary.mat','D');
[m,n]= size(D);%size(x)
k = D*(D');
T = (x)*k*(x');
[V1,U1,W1] =svd(T);
ceq = rank(U1)-m;
c= [];
end
답변 (3개)
Walter Roberson
2018년 5월 30일
2 개 추천
Never load() inside a cost function. Load the data outside the function and pass the data in.
In your case, for coheren(), you could pre-calculate U, a, and b, and pass those all in. For cohcon, you could pre-calculate k = D*(D') and pass that in.
댓글 수: 11
Pushkar Khatri
2018년 5월 30일
편집: Walter Roberson
2018년 5월 30일
Walter Roberson
2018년 5월 30일
편집: Walter Roberson
2018년 5월 30일
Can you attach representative data for us to test with?
... And remember, we cannot paste images of code into MATLAB for execution.
Pushkar Khatri
2018년 5월 31일
편집: Pushkar Khatri
2018년 5월 31일
Walter Roberson
2018년 5월 31일
The initial gradient and Hessian estimation takes a long time!
Pushkar Khatri
2018년 5월 31일
편집: Pushkar Khatri
2018년 5월 31일
Walter Roberson
2018년 5월 31일
>> cohdrive
Iter Func-count Fval Feasibility Step Length Norm of First-order
step optimality
0 248005 1.244865e+09 0.000e+00 1.000e+00 0.000e+00 7.856e+03
Error using sqpLineSearchMex
Requested 248004x248004 (458.3GB) array exceeds maximum array size preference. Creation of arrays greater than this limit may take a long time and cause MATLAB to become unresponsive. See array size limit or preference panel for more
information.
Error in sqpInterface
Error in fmincon (line 823)
[X,FVAL,EXITFLAG,OUTPUT,LAMBDA,GRAD,HESSIAN] = sqpInterface(funfcn,X,full(A),full(B),full(Aeq),full(Beq), ...
Error in cohdrive (line 11)
x = fmincon(fun,zeros(498),[],[],[],[],[],[],nonlcon,options)
Walter Roberson
2018년 5월 31일
The same thing happened when I switched to interior-point, except that it did not get to displaying even one iteration.
Pushkar Khatri
2018년 6월 1일
Walter Roberson
2018년 6월 3일
Do you have a comment on the analysis I did for the nonlinear constraints?
Pushkar Khatri
2018년 6월 4일
편집: Pushkar Khatri
2018년 6월 4일
Walter Roberson
2018년 6월 4일
Convex optimization would be more associated with linear constraints rather than with nonlinear constraints.
Aakash Deep
2018년 5월 31일
0 개 추천
Hey Pushkar,
Solving a convex optimization problem is a big task. Yes, it can take a long time to converge. You can not minimize the time of the algorithm but what you can do is, you can change your converging threshold.
As you know, the convergence plot of convex optimization problem decrease exponentially and hence the major components are already gets covered in the starting. So, you can give a threshold (try to keep the threshold at or below 0.1) such that whenever your error value gets below the threshold then stop the algorithm.
댓글 수: 7
Pushkar Khatri
2018년 5월 31일
Aakash Deep
2018년 5월 31일
편집: Aakash Deep
2018년 5월 31일
Okay, no problem. There is another simple approach for this. Try to use maximum iteration parameter in your optimoptions to stop your algorithm (50 iterations are more than enough to recover a signal efficiently but obviously you can change it according to your need).
For further details, refer this,
Hope this helps :)
Walter Roberson
2018년 5월 31일
It is not possible to complete even one iteration, because of the (498*498) x (498*498) matrix that is needed for hessian estimation. The interaction of every variable with every other variable must be estimated.
I wonder if this could be rewritten as "large-scale" ?
Aakash Deep
2018년 6월 1일
I don't think the size of the matrix will create any problem (50 iteration was just a suggested value, obviously it will be different for everyone). By this, the major problem of code not stopping will get solve.
Walter Roberson
2018년 6월 1일
Aakash Deep, I actually executed the code. Before the second iteration ('sqp') or before the first iteration ('interior-point') the error message is given,
Requested 248004x248004 (458.3GB) array exceeds maximum array size preference. Creation of arrays greater than this limit may take a long time and cause MATLAB to become unresponsive. See array size limit or preference panel for more
information.
248004 is exactly 498^2, which is the number of variables involved because zeros(498) is passed as the x value to fmincon. Hessian estimation requires estimating the effect of each variable with respect to each other variable, which would lead to a 248004 x 248004 matrix, which is 458.3GB . I know that I do not have that much memory!
Aakash Deep
2018년 6월 1일
Yes, I agree with your point. So in that case, is there any solution for this problem?
Walter Roberson
2018년 6월 1일
The only hope I see while using fmincon() is if the algorithm can be expressed for use in large scale solvers.
When I look at the nonlinear constraint, after some thinking, it looks to me as if it testing whether the matrix is singular in the sense of having at least one zero singular value. It calculates the rank of the 498 x 498 diagonal matrix, with the rank being the same as the number of non-zero diagonal elements, and it subtracts off the number of rows of the D matrix (498) and returns that. That would be negative in the case where there was at least one zero singular value, and would be 0 in the cast where the passed in matrix had no non-zero singular values.
... But -- nonlinear inequalities are consider satisfied if the output is <= 0, which is always going to be the case because rank minus 498 with rank maximum 498, can never be positive. With the two cases distinguished in theory seeming to be either singular or not, then I suspect that 1 should have been added to the result of the test so that the result would be positive in the case where the input was full rank.
When I look at https://www.mathworks.com/help/matlab/ref/svd.html#bu2_4_9 it says you can calculate the rank of a matrix by calculating the number of non-zero singular values -- which is what appears to be happening here. But it also says that rank() is provided for that purpose. This suggest that even if the nonlinear constraint is still required, that the SVD calculation followed by finding the rank of the diagonal, could be replaced by simply calling rank() on the matrix.
As I look through the way that matrix is being constructed, rank(Z) is 215, and I do not think it is possible for the calculations it is doing to create a greater rank matrix. So my thought is that at least for this D matrix, that the nonlinear constraint will always return negative (meaning constraint not violated). If my logic is correct then the nonlinear constraint call could be removed. That could be important for the purpose of converting to large scale algorithms.
Unfortunately at the moment I have no idea how one would calculate the hessian pattern for the large scale algorithms.
Rishabh Rathore
2018년 6월 4일
편집: Rishabh Rathore
2018년 6월 4일
0 개 추천
For the convergence problem, the upper bound could be used on the number of iterations, as suggested by Aakash. As for the problem with size of array being too large, Tall arrays could be used to overcome the issue as Tall arrays are not loaded in the memory at once.
Note:- the computation would take time since the size of the data to be manipulated and the number of calculations to be performed is very high.
카테고리
도움말 센터 및 File Exchange에서 Surrogate Optimization에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
