
AI算法
文章平均质量分 89
cheney康
中山大学计算机学院研究生
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Python 梯度下降实现案例(求空间内一点到其它所有点距离之和最小 )
题目描述:1.Generate n = 2,000 points uniformly at random in the two-dimensional unit square.Which point do you expect the centroid to be?2.What objective does the centroid of the points optimize?3.Apply g...原创 2018-03-25 09:33:23 · 6428 阅读 · 3 评论 -
Python 自编函数实现反向传播
问题描述:禁止使用深度学习与梯度下降相关的库实现下列问题。Several exercises will make use of the following three-dimensional data sampledfrom three categories, denoted ωi .1. Consider a 2-2-1 network with bias, where the activati...原创 2018-03-25 10:26:33 · 1802 阅读 · 0 评论 -
深度神经网络(DNN)Deep Neural Networks 介绍
这里将自己做的一个PPT纪录一下,根据斯坦福大学CS234 lecture 5 整理而来Some of the content for this lecture is borrowed from Hugo Larochelle 神经网络相对于训练集:太小(欠拟合),找到的规律模型未能够很好的捕捉数据特征,不能很好的拟合数据;太大(过拟合),记住的规律太多,太具体死板地记住训练集,不够抽象。单个神经...原创 2018-03-25 19:12:35 · 36697 阅读 · 3 评论