最新 最热

tf.Session

一个运行TensorFlow操作的类。会话对象封装了执行操作对象和计算张量对象的环境。

2022-09-04
1

matplotlib.pyplot.gca

Get the current Axes instance on the current figure matching the given keyword args, or create one.

2022-09-03
1

Python快速转换numpy数组中Nan和Inf的方法

在使用numpy数组的过程中时常会出现nan或者inf的元素,可能会造成数值计算时的一些错误。这里提供一个numpy库函数的用法,使nan和inf能够最简单地转换成相应的数值。...

2022-09-03
0

numpy.empty

numpy.empty(shape, dtype=float, order='C')

2022-09-03
1

Array Broadcasting in Numpy

Let’s explore a more advanced concept in numpy called broadcasting. The term broadcasting describes how numpy treats arrays with different shapes during arithme...

2022-09-03
0

numpy.frombuffer()

numpy.frombuffer(buffer, dtype=float, count=-1, offset=0)

2022-09-03
0

numpy.tile()

numpy.tile()是个什么函数呢,说白了,就是把数组沿各个方向复制。比如 a = np.array([0,1,2]),    np.tile(a,(2,1))就是把a先沿x轴(就这样称呼吧)复制1倍,即没有复制,仍然是 [0,1,2]。 再把结果沿y方向复制2倍,即最终得到...

2022-09-03
0

numpy.sqrt

numpy.sqrt(x, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature, extobj]) = <ufunc 'sqrt'>

2022-09-03
1

Numpy中ndim、shape、dtype、astype的用法

本文介绍numpy数组中这四个方法的区别ndim、shape、dtype、astype。

2022-09-03
0

numpy.geomspace

numpy.logspace(start, stop, num=50, endpoint=True, base=10.0, dtype=None, axis=0)[source]

2022-09-03
0