自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(13)
  • 收藏
  • 关注

原创 《动手学》学习笔记

torch.view调整tensor的shape1、torch.view(-1)tensor将变成一维tensor2、torch.view(-1, 1)tensor将变成n*1的矩阵

2020-02-14 17:37:09 163

原创 Python学习之浅拷贝与深拷贝

1. 浅拷贝浅拷贝只复制父对象,其内部的子对象不复制。可通过copy.copy实现。2. 深拷贝深拷贝不仅复制父对象,还复制子对象,相当于重新生成了一个一模一样的对象。3. 区别import copya = [1, 2, 3]b = ac = copy.copy(a)d = copy.deepcopy(a)e = list(a)print("a address...

2018-10-30 21:07:43 219

原创 机器学习系列之coursera week 10 Large Scale Machine Learning

目录1. Gradient Descent with Large Datasets1.1 Learning with large datasets1.2 Stochastic gradient descent1.3 Mini-Batch Gradient Dedscent1.4 Stochastic gradient descent convergence2. Advanc...

2018-10-10 10:10:07 294

原创 机器学习系列之coursera week 9 Anomaly Detection

目录1. Density Estimation1.1 Problem Motivation2. Gaussian Distribution3. Algorithm2. Building an Anomaly Detection System2.1 Developing and Evaluating an Anomaly Detection System2.2 Anoma...

2018-09-26 15:21:01 590

原创 机器学习系列之coursera week 8 Unsupervised Learning

目录1. Clustering1.1 Unsupervised Learning: Introduction1.2 K-Means Algorithm1.3 Optimization Objective1.4 Random initialization1.5 Choosing the number of clusters2. Motivation of Dimensio...

2018-09-17 21:19:35 226

原创 机器学习系列之coursera week 7 Support Vector Machine

目录1. Large margin classification1.1 Optimization objective1.2 Large Margin Intuition1.3 Mathematic Behind Large Margin classification2. Kernels2.1 Kernels I2.2 Kernels II3. SVMs in pra...

2018-09-10 15:40:49 212

原创 机器学习系列之coursera week 6 Advice for Applying Machine Learning

目录1. Evaluating a learning Algorithm1.1 Deciding what to try next1.2 Evaluating a hypothesis1.3 Model selection and training/validation/test2. Bias VS Variance2.1 Diagnosing bias VS varian...

2018-09-03 19:25:46 352

原创 机器学习系列之coursera week 5 Neural Networks: Learning

目录1.  Cost Function and Back Propagation1.1 Cost Function1.2 Back propagation algorithm1.3 Back propagation intuition2. Back Propagation in practice2.1 Implementation note: unrolling param...

2018-08-28 10:22:42 289

原创 机器学习系列之coursera week 4 Neural Networks: Representation

目录1. Motivations1.1 Non-linear hypothesis (Neural Networks)1.2 Neurons and the brain2. Neural Networks2.1 Model Representation I2.2 Model Representation II3. Application3.1 Example and...

2018-08-20 17:17:12 239

原创 机器学习系列之coursera week 3 Logistic Regression

目录1. Classification and Representation1.1 Classification1.2 Hypothesis representation of Logistic Regression1.3 Decision boundary2. Logistic Regression Model2.1 Cost function2.2 Simplifi...

2018-08-14 11:12:09 345

原创 机器学习系列之coursera week 2 Linear Regression with Multiple Variables

目录1. Multiple Features1.1 Multiple features1.2 Gradient descent for multiple varibales1.3 Gradient descent in practice I:Feature scaling1.4 Gradient descent in practice II: Learning rate1....

2018-08-03 16:53:53 204

原创 机器学习系列之coursera week 1 Introduction 以及模型评估

目录前言1.coursera week 1 review1.1 Introduction1.2 Model and cost function 1.3 Parameter learning2.模型评估   2.1 经验误差和过拟合   2.2 评估方法2.2.1 留出法2.2.2 交叉验证法2.2.3 自助法2.2.4 调参与最终模型    2....

2018-07-28 10:46:35 386

原创 机器学习系列之BP算法实现神经网络

目录一. 神经网络简介二. 误差逆传播(error Back Propagation,BP )算法三. python代码实现四. 参考 一. 神经网络简介神经网络式由具有适应性的简单单元组成的广泛并行交互的网络,它的组织能够模拟生物神经系统对真实世界物体所作出的交互反应。神经网络最基本的单元是神经元。早在1943年 McCulloch 和 Pitts将生物神经元抽象成如...

2018-07-21 17:02:22 980

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除