码迷,mamicode.com
首页 >  
搜索关键字:square    ( 2122个结果
时间序列(一):上手体验
我们把按照时间次序排列的随机变量序列 $$Y_0,\, Y_1,\, Y_2, \cdots $$ 称为时间序列(Time Series)。比如网站的PV、DAU,国家的GDP,股票的价格等。 这种特别的次序给模型提出了特别的挑战,包含数据内的自相关性、不可交换性、以及数据和参数的不平稳性等。 时间 ...
分类:其他好文   时间:2018-05-19 15:44:44    阅读次数:291
LeetCode 367. Valid Perfect Square
问题链接 "LeetCode 367. Valid Perfect Square" 题目解析 判断一个正数是否是完全平方数,不可使用sqrt函数。 解题思路 这是一道简单题,但是却挺有思考价值的。本题有很多种解法,思路各异,可以都看看。 无数种解法 解法一 数学里有一个概念叫做等差数列,完全平方数恰 ...
分类:其他好文   时间:2018-05-18 00:37:14    阅读次数:185
[数论][组合数学]Iroha and a Grid
题目描述 We have a large square grid with H rows and W columns. Iroha is now standing in the top-left cell. She will repeat going right or down to the adj ...
分类:其他好文   时间:2018-05-17 23:23:02    阅读次数:330
835. Image Overlap —— weekly contest 84
Image Overlap Two images A and B are given, represented as binary, square matrices of the same size. (A binary matrix has only 0s and 1s as values.) W ...
分类:其他好文   时间:2018-05-14 00:58:48    阅读次数:899
2B The least round way
传送门 题目 There is a square matrix n?×?n, consisting of non-negative integer numbers. You should find such a way on it that starts in the upper left cell ...
分类:其他好文   时间:2018-05-11 20:31:54    阅读次数:193
[LeetCode] Swim in Rising Water 在上升的水中游泳
On an N x N grid, each square grid[i][j] represents the elevation at that point (i,j). Now rain starts to fall. At time t, the depth of the water ever ...
分类:其他好文   时间:2018-05-10 00:01:21    阅读次数:476
python中matplotlib实现最小二乘法拟合的过程详解
这篇文章主要给大家介绍了关于python中matplotlib实现最小二乘法拟合的相关资料,文中通过示例代码详细介绍了关于最小二乘法拟合直线和最小二乘法拟合曲线的实现过程,需要的朋友可以参考借鉴,下面来一起看看吧。 前言 最小二乘法Least Square Method,做为分类回归算法的基础,有着 ...
分类:编程语言   时间:2018-05-05 21:13:30    阅读次数:359
回归问题的性能度量标准
我们以$Y = \{ y_1, y_2,...,y_n \}$ 表示真实的数据,以$\hat Y = \{ \hat{y}_1, \hat{y}_2,...,\hat{y}_n\}$表示预测出来的数据 1:均方误差 (mean square error)MSE $MSE = \frac{1}{n} ...
分类:其他好文   时间:2018-05-04 14:26:21    阅读次数:419
第二章
无序列表: <ul> <li>内容</li> <li>内容</li> </ul> <ul>是无序列表的声明,<li>是每个列表项的起始 type属性: disc(默认):实体圆 square:实体方心 circle:空心圆 *特性: ①没有顺序,每个<li>标签独占一行(块元素) ②默认的<li>标 ...
分类:其他好文   时间:2018-05-04 01:44:33    阅读次数:147
python3 速查参考- python基础 -> 函数编程之 装饰器、生成器
装饰器 1.速查笔记 定义:在代码运行期间动态增加功能的方式,称之为“装饰器”(Decorator) 经典示例: 2. 原则:①不能修改被装饰函数的源代码;②不能修改被装饰函数的调用方式 3.实现装饰器的技能储备 ① 函数本身即是变量 ② 高阶函数,把一个函数名当做实参穿给另一个函数 ③ 嵌套函数 ...
分类:编程语言   时间:2018-05-04 01:29:39    阅读次数:245
2122条   上一页 1 ... 56 57 58 59 60 ... 213 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!