SciPy SVD与Numpy SVD [英] SciPy SVD vs. Numpy SVD

查看:297
本文介绍了SciPy SVD与Numpy SVD的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

SciPy和Numpy都内置了用于奇异值分解(SVD)的函数.这些命令基本上是scipy.linalg.svdnumpy.linalg.svd.两者有什么区别?他们中的任何一个都比另一个更好吗?

Both SciPy and Numpy have built in functions for singular value decomposition (SVD). The commands are basically scipy.linalg.svd and numpy.linalg.svd. What is the difference between these two? Is any of them better than the other one?

推荐答案

来自

From the FAQ page, it says scipy.linalg submodule provides a more complete wrapper for the Fortran LAPACK library whereas numpy.linalg tries to be able to build independent of LAPACK.

对于svd的不同实现,我做了一些基准函数,发现scipy.linalg.svd比numpy对应的更快:

I did some benchmarks for the different implementation of the svd functions and found scipy.linalg.svd is faster than the numpy counterpart:

但是, jax 包裹了numpy,又名jax.numpy.linalg.svd甚至更快:

However, jax wrapped numpy, aka jax.numpy.linalg.svd is even faster:

可以在此处找到完整的基准测试笔记本.

Full notebook for the benchmarks are available here.

这篇关于SciPy SVD与Numpy SVD的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆