最新 最热

tf.quantization

三、tf.quantization.fake_quant_with_min_max_args

2022-09-03
0

pytorch.range() 和 pytorch.arange()

>>> y=torch.range(1,6)>>> ytensor([1., 2., 3., 4., 5., 6.])>>> y.dtypetorch.float32>>> z=torch.arange(1,6)>>> ztensor([1, 2, 3, 4, 5])>>> z.dtypetorch.int64总结:t......

2022-09-02
1

torch.range()和torch.arange()的区别

>>> y=torch.range(1,6)>>> ytensor([1., 2., 3., 4., 5., 6.])>>> y.dtypetorch.float32>>> z=torch.arange(1,6)>>> ztensor([1, 2, 3, 4, 5])>>> z.dtypetorch.int64总结:t......

2022-09-02
1

【工具】像大佬一样使用 Google

原文地址:Use Google like a pro原文作者:Marko Denic译者:Gopal译者注:本文篇幅非常短,但个人觉得对自己有所帮助,所以打算分享一下。关于墙内墙外的问题,笔者因为目前在一家小外企,所以没有问题。不过也是可以解决的,有条件...

2022-08-01
1

教师妹学python之三:语句控制

中午又到饭点的时间了,纠结吃什么已经成为日常条件反射。下面举个例子:那么中午吃什么呢?

2022-08-01
0

numpy.put()

Replaces specified elements of an array with given values.The indexing works on the flattened target array. put is roughly equivalent to:

2022-07-27
1

一个简单但是能上分的特征标准化方法

来源:DeepHub IMBA本文约1100字,建议阅读5分钟本文介绍的方法叫Robust Scaling,正如它的名字一样能够获得更健壮的特征缩放结果。一般情况下我们在做数据预处理时都是使用StandardScaler来特征的标准化,如果你的数据中包...

2022-07-19
1

Python追加Excel追加数据

前面我分享了 Excel 的读写:Python 实现 Excel 的读写操作:https://bornforthis.cn/column/pyauto/auto_base05.html

2022-07-17
1

Numpy数据类型和arange方法、astype方法的使用

除了intc之外,还定义了平台相关的C整数类型short,long,longlong。

2022-07-14
0

POJ培训计划2253_Frogger(最短/floyd)

Freddy Frog is sitting on a stone in the middle of a lake. Suddenly he notices Fiona Frog who is sitting on another stone. He plans to visit her, but since ...

2022-07-06
1