我有一个稀疏矩阵,我使用此行对Theano执行Cholesky分解:
theano.tensor.slinalg.Cholesky(lower=True)
它说它有效并且显示了这个:
Cholesky{lower=<32x32 sparse matrix of type '<class 'numpy.float64'>'
with 154 stored elements in Compressed Sparse Row format>, destructive=False, on_error='raise'}
我该如何解决系统并找到x
?我试过了theano.tensor.slinalg.Solve
,但它返回了这个:
Solve{A_structure='general', lower=False, overwrite_A=False, overwrite_b=False}