码迷,mamicode.com
首页 >  
搜索关键字:linear    ( 2303个结果
Linear regression with one variable - Model representation
本文是吴恩达 (Andrew Ng)老师《机器学习》课程,第二章《单变量线性回归》中第6课时《模型概述》的视频原文字幕。为本人在视频学习过程中逐字逐句记录下来以便日后查阅使用。现分享给大家。如有错误,欢迎大家批评指正,在此表示诚挚地感谢!同时希望对大家的学习能有所帮助。 ...
分类:其他好文   时间:2019-11-04 17:50:29    阅读次数:85
神经网络和深度学习(一)神经网络基础
1、什么是神经网络? (1)房价预测模型Ⅰ: 神经网络:size x ——> O ——> price y ReLU函数(Rectified linear unit 修正线性单元):修改线性的函数,避免出现price未负数的情况. (2)房价预测模型Ⅱ: 即神经网络为: 2、Binary classi ...
分类:其他好文   时间:2019-11-03 10:33:00    阅读次数:75
Machine Learning Technologies(10月20日)
Linear regression SVM(support vector machines) Advantages: ·Effective in high dimensional spaces. ·Still effective in cases where number of dimensions ...
分类:系统相关   时间:2019-11-02 20:05:07    阅读次数:87
136. Single Number
题目描述: Given an array of integers, every element appears twice except for one. Find that single one.Note: Your algorithm should have a linear runtime c ...
分类:其他好文   时间:2019-10-31 22:00:15    阅读次数:117
sklearn算法中的顶层设计
sklearn监督学习的各个模块 neighbors近邻算法,svm支持向量机,kernal_ridge核岭回归,discriminant_analysis判别分析,linear_model广义线性模型 ensemble集成方法,tree决策树,native_bayes朴素贝叶斯,cross_dec ...
分类:编程语言   时间:2019-10-31 17:52:59    阅读次数:98
经典卷积神经网络——AlexNet
一.网络结构 AlexNet由5层卷积层和3层全连接层组成。 论文中是把网络放在两个GPU上进行,为了方便我们仅考虑一个GPU的情况。 上图中的输入是224×224224×224,不过经过计算(224?11)/4=54.75(224?11)/4=54.75并不是论文中的55×5555×55,而使用2 ...
分类:Web程序   时间:2019-10-31 13:10:31    阅读次数:116
MAT2040 Linear Algebra
Binary Vector Spaces and Error Correcting CodesMAT2040 Linear Algebra (2019 Fall)Project 1Project Instructions:? Read the following text and answer th ...
分类:其他好文   时间:2019-10-27 20:28:53    阅读次数:102
BP网络简单实现
[TOC] BP算法的简单实现 首先创建一个父类Fun, 主要定义了 forward: 前向方法,需要子类重定义; Momentum: 一个梯度下降方法; step: 更新系数的方法; zero_grad: 将记录的梯度清空; load: 加载系数; Linear 全连接层 全连接层需要注意的是 $ ...
分类:其他好文   时间:2019-10-27 16:47:16    阅读次数:81
Four subspaces - Prof. Strang
Explaination of 4 subspaces in linear algebra from mapping viewpoint. ...
分类:其他好文   时间:2019-10-27 10:36:18    阅读次数:73
pytorch之 bulid_nn_with_2_method
1 import torch 2 import torch.nn.functional as F 3 4 5 # replace following class code with an easy sequential network 6 class Net(torch.nn.Module): 7 ... ...
分类:其他好文   时间:2019-10-26 15:39:54    阅读次数:87
2303条   上一页 1 ... 27 28 29 30 31 ... 231 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!