'Origin on WCS point: 0,0,6150 'Rotation of the Zaxis: -90 degrees 'Rotation of the Yaxis: 6 degrees 'Rotation of the Xaxis: 35 degrees 'Rotation of t ...
分类:
其他好文 时间:
2020-02-20 10:29:30
阅读次数:
108
LeetCode 0452. Minimum Number of Arrows to Burst Balloons用最少数量的箭引爆气球【Medium】【Python】【区间贪心】 Problem "LeetCode" There are a number of spherical balloons ...
分类:
编程语言 时间:
2020-02-16 20:35:52
阅读次数:
75
参考 http://www.dyn4j.org/2010/01/sat/ SAT: 用来判断两个Convex是否相交。同时可以找到而者minimum penetration vector。 凹多边形可以拆成多个凸多边形 如果能找到一个Axis,两个convex的投影不交叉,那么这两个convex也不 ...
分类:
其他好文 时间:
2020-02-11 19:16:56
阅读次数:
79
在绘制chart的方法中添加下面语句,则会在尺寸变化的时候,重新绘制图表 完整如下: ...
分类:
其他好文 时间:
2020-02-07 10:50:29
阅读次数:
73
1、linalg=linear(线性)+algebra(代数),norm则表示范数。 2、函数参数 x_norm=np.linalg.norm(x, ord=None, axis=None, keepdims=False)①x: 表示矩阵(也可以是一维) ②ord:范数类型 向量的范数: 矩阵的范数 ...
分类:
其他好文 时间:
2020-02-06 13:01:22
阅读次数:
82
第三周 浅层神经网络 第 21 题 以下哪项是正确的?(选出所有正确项) A.$a^{ "2" }$是第12层,第2个训练数据的激活向量 B.$X$是一个矩阵,其中每个列是一个训练数据 C.$a^{[2]}_4$是第2层,第4个训练数据的激活输出 D.$a^{[2]}_4$是第2层,第4个神经元的激 ...
分类:
其他好文 时间:
2020-02-04 13:46:02
阅读次数:
216
函数原型:numpy.cumsum(a, axis=None, dtype=None, out=None) 可参考链接:https://docs.scipy.org/doc/numpy-1.10.1/reference/generated/numpy.cumsum.html查看各个参数的含义。 函数 ...
分类:
其他好文 时间:
2020-02-02 13:47:01
阅读次数:
437
from tensorflow.python.keras.preprocessing.image import load_img,img_to_array from tensorflow.python.keras.models import Sequential,Model from tensorf ...
分类:
其他好文 时间:
2020-02-02 01:08:50
阅读次数:
331
1 利用数组进行数据处理 numpy数组可以将许多种数据处理任务表述为简洁的数组表达式,用数组表达式替换循环的做法,通常被称为矢量化。 例如:我们想要处理一组值(网格型)上计算函数sqrt(x^2 + y^2)。np.meshgrid函数接受两个一维数组,并产生两个二维矩阵(对应于两个数组中所有的( ...
分类:
编程语言 时间:
2020-02-01 16:34:23
阅读次数:
81
网络结构如下: 代码如下: 1 # encoding: utf-8 2 3 import tensorflow as tf 4 from tensorflow import keras 5 from tensorflow.keras import layers, Sequential, losses ...
分类:
Web程序 时间:
2020-02-01 14:21:02
阅读次数:
217