
机器学习
文章平均质量分 69
techping
这个作者很懒,什么都没留下…
展开
-
Coursera机器学习笔记(1)--基础介绍
一、机器学习概念 “A computer program is said to learn from experience E with respect to some class of tasks T and performance measure P, if its performance at tasks in T, as measured by P, improves with expe原创 2017-11-21 22:58:50 · 454 阅读 · 0 评论 -
用TensorFlow搭建一个全连接神经网络
用TensorFlow搭建一个全连接神经网络说明 本例子利用TensorFlow搭建一个全连接神经网络,实现对MNIST手写数字的识别。 先上代码from tensorflow.examples.tutorials.mnist import input_data import tensorflow as tf# prepare data mnist = input_data.read_data_se原创 2018-03-11 19:57:02 · 6941 阅读 · 0 评论 -
PCA+SVM人脸识别
PCA+SVM人脸识别 PCA介绍 主成分分析(Principal Component Analysis, 简称PCA)是常用的一种降维方法. 算法步骤: 输入: 样本集 D={x1,x2,...,xm}D={x1,x2,...,xm}D=\{x_1, x_2, ..., x_m\}, 低维空间维数 d′d′d' 过程: 对所有样本进行中心化: xi←xi−1m∑mi=1xix...原创 2018-07-10 18:58:29 · 4450 阅读 · 1 评论