1 def tensor_demo(): 2 """ 3 张量的演示 4 :return: 5 """ 6 tensor1 = tf.constant(4.0) 7 tensor2 = tf.constant([1, 2, 3, 4]) 8 linear_squares = tf.constant( ...
分类:
其他好文 时间:
2020-02-10 22:13:32
阅读次数:
58
Let $S={(x^{(i)}, y^{(i)})}_{i=1}^m$ be a training set of i.i.d. examples from unknow distribution. The standard probabilistic interpretation of linea ...
分类:
其他好文 时间:
2020-02-09 18:25:31
阅读次数:
78
STA303 - Assignment 1Winter 2020Due 2019-01-31This assignment is worth 5% of your final grade. It is also intended as preparation for Test 1 (worth 20 ...
分类:
其他好文 时间:
2020-02-08 19:30:34
阅读次数:
119
https://www.luogu.com.cn/blog/ShineEternal/linear-equation-group #include<cstdio> #include<cmath> #include<iostream> using namespace std; double a[105 ...
分类:
其他好文 时间:
2020-02-08 13:18:04
阅读次数:
70
论文题目:MobileNet V2:Inverted Residuals and Linear Bottlenecks 文献地址:https://arxiv.org/abs/1801.04381 (非官方)源码地址: (1)Caffe 实现:https://github.com/shicai/Mob ...
分类:
Web程序 时间:
2020-02-07 11:04:34
阅读次数:
144
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
一、CSS3 渐变(gradients)渐变效果CSS3 渐变(gradients)可以让你在两个或多个指定的颜色之间显示平稳的过渡。CSS3 定义了两种类型的渐变(gradients):线性渐变(Linear Gradients)- 向下/向上/向左/向右/对角方向径向渐变(Radial Grad... ...
分类:
Web程序 时间:
2020-02-05 16:22:47
阅读次数:
290
Linear regression 1. 线性回归 线性回归模型尽量写成矩阵形式进行计算。 为什么矩阵计算比循环快很多? 【知乎】因为通常的数学库,矩阵运算都是用BLAS、ATLAS之类的库。这些库中,矩阵运算都是优化过的(也就是说通常不会用两层循环来计算矩阵乘法,具体的计算方法请参考源代码)。 当 ...
分类:
其他好文 时间:
2020-02-04 13:44:43
阅读次数:
102
By R?za Özçelik Original post: https://towardsdatascience.com/an-intuitive-explanation-of-graphsage-6df9437ee64f DeepWalk is a transductive algorithm, ...
分类:
其他好文 时间:
2020-02-03 22:17:54
阅读次数:
95
学习进度2020.02.02 View与ViewGroup的概念 学习地址: https://www.runoob.com/w3cnote/android-tutorial-view-viewgroup-intro.html 在Android APP中,所有的用户界面元素都是由View和ViewGr ...
分类:
其他好文 时间:
2020-02-02 23:21:41
阅读次数:
81