码迷,mamicode.com
首页 >  
搜索关键字:smooth    ( 203个结果
zabbix构建部署及监控管理--------实操
角色部署:CentOS7-2:192.168.18.147(监测端:部署安装zabbix)CentOS7-3:192.168.18.128(被监测端)监测端操作:[root@cacti~]#systemctlstopfirewalld.service#关闭防火墙功能[root@cacti~]#systemctldisablefirewalld.service#开机禁用防火墙功能Removedsym
分类:其他好文   时间:2020-02-11 17:28:41    阅读次数:72
统计语言模型
概念 统计语言模型是NLP的基础,是描述自然语言内在的规律的数学模型。广泛应用于各种自然语言处理问题,如语音识别、机器翻译、分词、词性标注等。 简单地说,统计语言模型就是给定一个句子W(由多个单词w1,w2,w3...组成),计算该句子可信(合理)的概率的模型,即$P(W)=P(w_1,w_2,w_ ...
分类:编程语言   时间:2020-02-07 16:29:54    阅读次数:63
[leetcode]Image Smoother
简单题 class Solution: def imageSmoother(self, M: List[List[int]]) -> List[List[int]]: m = len(M) n = len(M[0]) result = [[0] * n for _ in range(m)] for ...
分类:其他好文   时间:2020-02-06 11:04:34    阅读次数:63
vue简单计数器
//App.vue <template> <div id="app"> <!-- <img src="./assets/logo.png"> --> <!-- <router-view/> --> <div class="num"> <button @click="sub">-</button> < ...
分类:其他好文   时间:2020-01-23 21:07:34    阅读次数:104
Vue-cli浅入浅出
搭建环境 工欲善其事必先利其器,我们的学习计划从学会搭建Vue所需要的环境开始,node和npm的环境不用说是必须的,现在前端流程化很热门,基本上新的技术都会在这套流程的基础上做开发,我们只需要站在巨人的XX上装*就可以了。我假设你的机子上已经有了最新的node和npm了,那我们就只需要执行以下命令 ...
分类:其他好文   时间:2020-01-15 09:19:53    阅读次数:78
Cubic and Smoothing Splines in R
splines are a smooth and flexible way of fitting Non linear Models and learning the Non linear interactions from the data.In most of the methods in wh ...
分类:其他好文   时间:2019-12-19 15:58:30    阅读次数:125
为CentOS安装python3
摘自:https://www.jianshu.com/p/7c2b62c37223 摘自:https://www.jianshu.com/p/7c2b62c37223 1. 安装依赖 不要复制往下看 yum install openssl-devel bzip2-devel expat-devel ...
分类:编程语言   时间:2019-12-15 11:00:04    阅读次数:128
页面滚动到指定元素区域
该代码段可将指定元素平滑滚动到浏览器窗口的可见区域。 const smoothScroll = element => document.querySelector(element).scrollIntoView({ behavior: 'smooth' }); smoothScroll('#fooB ...
分类:其他好文   时间:2019-12-13 00:13:22    阅读次数:238
L1 loss, L2 loss以及Smooth L1 Loss的对比
总结对比下$L_1$ 损失函数,$L_2$ 损失函数以及$\text{Smooth} L_1$ 损失函数的优缺点。 均方误差MSE ($L_2$ Loss) 均方误差(Mean Square Error,MSE)是模型预测值$f(x)$ 与真实样本值$y$ 之间差值平方的平均值,其公式如下 $$ M ...
分类:其他好文   时间:2019-12-11 13:33:45    阅读次数:376
processing基本图形绘制
示例代码(processing画圆): 1 void setup() 2 { 3 //初始化创建一个960*480像素大小的窗口 4 size(960,480); 5 smooth(); 6 } 7 8 void draw() 9 { 10 //当鼠标被按下时,圆变成黑色 11 if(mousePr ...
分类:其他好文   时间:2019-12-06 00:18:32    阅读次数:966
203条   上一页 1 2 3 4 5 ... 21 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!