码迷,mamicode.com
首页 >  
搜索关键字:linear regression    ( 2874个结果
Iris分类以及数组reshape想到的
最近在研究Iris花的逻辑回归分类中看到了如下的代码: from sklearn.linear_model import LogisticRegression X = iris["data"][:, 3:] y=(iris["target"]==2).astype(np.int) log_reg =... ...
分类:编程语言   时间:2018-10-04 09:04:14    阅读次数:185
数据结构之数组
什么是数组 数组(Array)是一种线性表数据结构,它用一组连续的内存空间来存储一组具有相同类型的数据。 下面是两个值得注意的概念: 1. 线性表(linear list) 线性表,即数据的逻辑结构是线性的。每个线性表中的数据最多只有向前和向后两个方向。典型的线性表有数组、链表、队列和栈。 和线性表 ...
分类:编程语言   时间:2018-10-03 20:27:13    阅读次数:156
[LeetCode] 229. Majority Element II 多数元素 II
Given an integer array of size n, find all elements that appear more than ? n/3 ? times. Note: The algorithm should run in linear time and in O(1) spa ...
分类:其他好文   时间:2018-10-02 14:09:16    阅读次数:153
html5 旋转导航练习
ul{ list-style: none; font-size: 24px; font-weight: bold;}a{ text-decoration: none;}li{ background: linear-gradient(to left,orange,red); width: 150px; ...
分类:Web程序   时间:2018-09-30 14:58:56    阅读次数:237
【保险案例的应用】
import pandas as pd import numpy as np from sklearn.preprocessing import PolynomialFeatures from sklearn.linear_model import LinearRegression import m ...
分类:其他好文   时间:2018-09-29 10:17:55    阅读次数:146
Lingo安装
Lingo安装 Lingo简介        LINGO是Linear Interactive and General Optimizer的缩写,即“交互式的线性和通用优化求解器”,由美国LINDO系统公司(Lindo Syste ...
分类:其他好文   时间:2018-09-28 22:11:52    阅读次数:181
算法分析中递推式的一般代数解法 张洋
http://blog.codinglabs.org/articles/linear-algebra-for-recursion.html 另介绍一种算法 Berlekamp-Massey算法,常简称为BM算法,是用来求解一个数列的最短线性递推式的算法。 ...
分类:编程语言   时间:2018-09-27 10:34:13    阅读次数:120
jQuery的动画方法
/* animate参数: 参数一:要改变的样式属性值,写成字典的形式 参数二:动画持续的时间,单位为毫秒,一般不写单位 参数三:动画曲线,默认为‘swing’,缓冲运动,还可以设置为‘linear’,匀速运动 参数四:动画回调函数,动画完成后执行的匿名函数 */ $('#div1').animat... ...
分类:Web程序   时间:2018-09-26 21:38:44    阅读次数:187
分类回归树
CART(Classification and Regression tree)分类回归树由L.Breiman,J.Friedman,R.Olshen和C.Stone于1984年提出。CART是一棵二叉树,采用二元切分法,每次把数据切成两份,分别进入左子树、右子树。而且每个非叶子节点都有两个孩子,所 ...
分类:其他好文   时间:2018-09-26 13:05:06    阅读次数:312
Google SketchUp Cookbook: (Chapter 1) Making Multiple Copies
软件环境 SketchUp Pro 2018 参考书籍 Google SketchUp Cookbook http://shop.oreilly.com/product/9780596155100.do Linear Arrays 使用Move工具,进行移动或复制物体,移动完成后可以继续调整物体之间 ...
分类:其他好文   时间:2018-09-25 14:07:57    阅读次数:155
2874条   上一页 1 ... 66 67 68 69 70 ... 288 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!