Machine Learning Algorithms



Linear Regression and Gradient Descent

Local Weighted Regression Algorithm

Logistic Regression

Generative Model vs Discriminative Model

Naive Bayes and Laplace Smoothing

k-Nearest Neighbors Algorithm

Decision Tree Algorithm

Bootstrap,Bagging and Random Forest

SVM(1):线性可分集的决策边界

SVM(2):Lagrange Duality求解线性可分SVM的最佳边界

SVM(3):Soft Margin 平衡之美

SVM(4):SMO算法

Recommender System:


User-Based Collaborative Recommender System

Item-Based Collaborative Recommender System

Content-Based Recommender System

其它:


算法诊断及学习曲线

高斯辨别分析 Gaussian Discriminant Analysis

Overfit,Underfit and Regularization

逻辑回归求解二分类问题的Octave仿真

逻辑回归求解图像识别问题的Octave仿真

正规方程法求解多元线性回归的Octave仿真

基于高斯分布的异常检测算法

异常检测算法的Octave仿真

K-means Clustering

Neural Network and Deep Learning


Neural Network Basic


Parameter Initializations in Deep Learning

Feedforward Neural Network and BackPropagation Algorithm

Gradient Vanishing Problem in Deep Learning

L2 Regularization for Neural Networks

Cross-entropy Cost Function

Activation Functions and Their Derivatives


Optimization Algorithms


Gradient Descent(Batch/Stochastic/Mini-Batch)

Gradient Descent with Momentum and Nesterov Momentum

AdaGrad and RMSProp Algorithm

Adam Optimization Algorithm

Newton's method

Deep Learning


Grid Search for Tensorflow Deep Learning

Tensorflow(1):num_units in BasicLSTMCell

RNN(1): Architecture of Naive RNN

RNN(2): BPTT and Long-term Dependencies

RNN(3): LSTM and the Movie <Inside Out>

CNN(1): Architecture

CNN(2):Sparse Interactions, Receptive Field and Parameter Sharing

CNN(3):Convolution and Channels

CNN(4):Feature map size, Padding and Stride

CNN(5):Pooling Layer

Autoencoder

Machine Learning 文章导读的更多相关文章

  1. 文献导读 - Machine Learning Identifies Stemness Features Associated with Oncogenic Dedifferentiation

    参考: Machine Learning Identifies Stemness Features Associated with Oncogenic Dedifferentiation 前所未有!1 ...

  2. [原创]Machine Learning/机器学习 文章合集

    转载请注明出处:https://www.codelast.com/ ➤ 用人话解释机器学习中的Logistic Regression(逻辑回归) ➤ 如何防止softmax函数上溢出(overflow ...

  3. 【Machine Learning】KNN算法虹膜图片识别

    K-近邻算法虹膜图片识别实战 作者:白宁超 2017年1月3日18:26:33 摘要:随着机器学习和深度学习的热潮,各种图书层出不穷.然而多数是基础理论知识介绍,缺乏实现的深入理解.本系列文章是作者结 ...

  4. 【Machine Learning】Python开发工具:Anaconda+Sublime

    Python开发工具:Anaconda+Sublime 作者:白宁超 2016年12月23日21:24:51 摘要:随着机器学习和深度学习的热潮,各种图书层出不穷.然而多数是基础理论知识介绍,缺乏实现 ...

  5. 【Machine Learning】机器学习及其基础概念简介

    机器学习及其基础概念简介 作者:白宁超 2016年12月23日21:24:51 摘要:随着机器学习和深度学习的热潮,各种图书层出不穷.然而多数是基础理论知识介绍,缺乏实现的深入理解.本系列文章是作者结 ...

  6. 【Machine Learning】决策树案例:基于python的商品购买能力预测系统

    决策树在商品购买能力预测案例中的算法实现 作者:白宁超 2016年12月24日22:05:42 摘要:随着机器学习和深度学习的热潮,各种图书层出不穷.然而多数是基础理论知识介绍,缺乏实现的深入理解.本 ...

  7. 【机器学习Machine Learning】资料大全

    昨天总结了深度学习的资料,今天把机器学习的资料也总结一下(友情提示:有些网站需要"科学上网"^_^) 推荐几本好书: 1.Pattern Recognition and Machi ...

  8. Machine Learning Algorithms Study Notes(3)--Learning Theory

    Machine Learning Algorithms Study Notes 高雪松 @雪松Cedro Microsoft MVP 本系列文章是Andrew Ng 在斯坦福的机器学习课程 CS 22 ...

  9. Machine Learning Algorithms Study Notes(2)--Supervised Learning

    Machine Learning Algorithms Study Notes 高雪松 @雪松Cedro Microsoft MVP 本系列文章是Andrew Ng 在斯坦福的机器学习课程 CS 22 ...

随机推荐

  1. SPSS 23下载安装和激活

    目录 1. 其他版本 2. 安装教程 3. 下载地址 1. 其他版本 参考:https://www.cnblogs.com/coco56/p/11648399.html 2. 安装教程 SPSS 23 ...

  2. JavaEE高级-Maven学习笔记

    Maven简介 1.Maven是一款服务于Java平台的自动化构建工具. 2.构建: - 概念:以“Java源文件”.“框架配置文件”.“JSP”.“HTML”.“图片”等资源为“原料”,去“生产”一 ...

  3. python引用库异常总结

    一.导入import pandas.io.data as web 时报了"The pandas.io.data module is moved to a separate package & ...

  4. MySQL数据库2表的增删改查

    目录 一.数据表(文件): 1.1增 1.2查看表内数据 1.3改 1.4删除列表 1.5查看库内列表及表结构 1.6复制表结构 二.列类型:(*********) 2.1数字 2.2字符串 2.3时 ...

  5. IIS部署复盘(杂记)

    首先,230是网站服务器,231主要放到是数据库:所以在230(部署的服务器)上部署不需要部署IIS和Oracle数据库, 231呢?231是数据库服务器:百度一下数据库服务器是什么? 文档第五步: ...

  6. linux运维、架构之路-git版本管理

    一.常见版本管理系统 1.SVN     集中式的版本控制系统,只有一个中央数据仓库,如果中央数据仓库挂了或者不能访问,所有的使用者无法使用svn,无法进行提交或者备份文件 2.Git      分布 ...

  7. luogu P1036 选数 x

    P1036 选数 题目描述 已知 n 个整数 x1,x2,…,xn,以及一个整数 k(k<n).从 n 个整数中任选 k 个整数相加,可分别得到一系列的和.例如当 n=4,k=3,4 个整数分别 ...

  8. R Seurat 单细胞处理pipline 代码

    options(stringsAsFactors = F ) rm(list = ls()) library(Seurat) library(dplyr) library(ggplot2) libra ...

  9. sh_01_判断年龄

    sh_01_判断年龄 # 1. 定义一个整数变量记录年龄 age = 15 # 2. 判断是否满了18岁 if age >= 18: # 3. 如果满了18岁,可以进网吧嗨皮 print(&qu ...

  10. php命令行工具

    https://jingyan.baidu.com/article/37bce2beb6e5681002f3a20f.html