第1步下载插件 cnpm i moment S 第2步 在main.js中去使用 users.vue文件 ` ...
分类:
其他好文 时间:
2020-03-08 21:40:27
阅读次数:
202
1 日期格式化: 1 moment().format('MMMM Do YYYY, h:mm:ss a'); // 三月 7日 2020, 11:59:47 中午 2 3 moment().format('dddd'); // 星期六 4 5 moment().format("MMM Do YY") ...
分类:
其他好文 时间:
2020-03-07 12:56:20
阅读次数:
148
1。 一般的机器学习方法不会在train好的模型上检查training data的结果,因为NN在training data上都没有办法获得很好的正确率, 所以要先回头看一下要对模型做什么修改,才能使得在training set上取得比较好的正确率。 2。 在training set获得好的结果,但 ...
分类:
其他好文 时间:
2020-02-28 13:54:11
阅读次数:
52
The Promise.any() method accepts an array (or any other iterable) of promises as a parameter. It returns a Promise object that is fulfilled with the v ...
分类:
编程语言 时间:
2020-02-20 20:09:40
阅读次数:
69
how-to-optimize-momentjs-with-webpack https://github.com/jmblog/how-to-optimize-momentjs-with-webpack ...
分类:
编程语言 时间:
2020-02-19 17:08:34
阅读次数:
75
1. 基于图像质量特征分析的大致流程如下,主要围绕:镜面反射特征(Specular reflection feature)/模糊特征(Blurriness feature)/ 色矩特征(Chromatic moment feature)/ 颜色多样性特征(Color diversity featur ...
分类:
其他好文 时间:
2020-02-18 18:29:12
阅读次数:
126
I need to set the codebase for the RMI application I'm working on at the moment and have done this successfully using first try{ ResourceBundle config ...
分类:
编程语言 时间:
2020-02-08 12:08:42
阅读次数:
120
1、使用moment $('#aa1').html(moment().format('YYYY-MM-DD')); $('#aa2').html(moment().format('HH:mm:ss')); 2、怎么将日期转化为monment的方式。 // return moment(val).for ...
分类:
其他好文 时间:
2020-02-06 01:17:23
阅读次数:
78
与学习相关的技巧 参数的更新 SGD $W \leftarrow W \eta \frac{\partial L}{\partial W}$ 缺点:如果函数的形状非均向(anisotropic),搜索的路径会非常低效.梯度的方向并没有指向最小值的方向.呈"之"字形向最小值移动,效率低. Moment ...
分类:
其他好文 时间:
2020-02-05 13:38:07
阅读次数:
71
1. SGD的不足: ①呈“之”字型,迂回前进,损失函数值在一些维度的改变得快(更新速度快),在一些维度改变得慢(速度慢)- 在高维空间更加普遍 ②容易陷入局部极小值和鞍点: 局部最小值: 鞍点: ③对于凸优化而言,SGD不会收敛,只会在最优点附近跳来跳去 - 可以通过使用不固定的learning ...
分类:
其他好文 时间:
2020-02-05 09:42:37
阅读次数:
90