搜索资源列表
data-mining-gradient-descent
- 机器学习,数据挖掘,利用梯度下降的算法来实现。-Machine learning, data mining, using the gradient descent algorithm.
ml1
- 使用matlab实现的,基础单变量以及多变量梯度下降算法,和信号分类以及信号归一化部分算法,是机器学习领域最基本的代码,希望大家多多交流-matlab implementation of basic univariate and multivariate gradient descent and signal classification algorithms, machine learning basic code, hope that more exchanges
The-gradient-descent-method
- 梯度下降法是一个最优化算法,常用于机器学习和人工智能当中用来递归性地逼近最小偏差模型-The gradient descent method is an optimization algorithm used in machine learning and artificial intelligence to recursive approximation of the minimum deviation model
logRegres
- 机器学习算法,Logistic回归算法,最优化理论和梯度下降-Machine learning algorithms, Logistic regression algorithm, optimization theory and the gradient descent
suanfa
- 梯度下降算法 机器学习 MATLAB编写 验证无误-Gradient descent algorithm to verify correct writing machine learning MATLAB
HousePrice(gradient-descent)
- 利用机器学习算法实现南京房价预测。已知2000年至2013年的南京房价,利用梯度下降法预测2014年南京房价。-Nanjing using machine learning algorithm to predict prices. Known 2000-2013 Nanjing prices, using the gradient descent method to predict 2014 Nanjing prices.
sgd-2.1.tar
- 机器学习和数据挖掘:本文件包含两个算法分别是随机梯度下降算法和平均随机梯度下降算法应用于支持向量机和条件随机域的问题中。-Two algorithms, SGD and ASGD, are applied to well konw problems, linear support vector machines and conditional random fields.
machine-learning-ex1
- coursera上的机器学习课程中的练习题源代码,这是练习一,实现了梯度下降算法,供学习者参考-Machine learning courses coursera exercises on the source code, which is a practice to achieve a gradient descent algorithm for learner reference
gradientDescent
- 机器学习中用于求解代价函数最小值的梯度下降算法-Machine Learning for solving the minimum cost function gradient descent algorithm
机器学习梯度下降
- 机器学习监督学习算法,梯度下降、批梯度下降(Machine learning supervised learning algorithms, gradient descent, batch gradient descent.)
GD
- 机器学习课程中的梯度下降算法的代码示例(MATLAB版本)(Code examples of gradient descent algorithms in machine learning programs)
机器学习_梯度下降算法实现
- 机器学习_梯度下降算法实现——C++ 程序使用方法: 程序只包括一个源文件gradient.cpp 运行的时候,将train.dat和test.dat两个数据及gradient.cpp放在同个目录下. 利用以下命令行操作即可. g++ gradient.cpp -o gradient gradient 程序运行的结果会在命令行中打印出来 该程序10秒钟内可以运行结束.(Machine learning _ gradient descent algorithm)
file1
- 机器学习基础之梯度下降算法的matlab源代码(Machine learning basis of the gradient descent algorithm matlab source code.)
tdxj
- 机器学习中的梯度下降算法的python版本的代码实现。有需要的可以下载(Implementation of the python version of the gradient descent algorithm in machine learning. There is a need to download)
fitness
- 比如每个企业和个人都要考虑的一个问题“在一定成本下,如何使利润最大化”等。最优化方法是一种数学方法,它是研究在给定约束之下如何寻求某些因素(的量),以使某一(或某些)指标达到最优的一些学科的总称。随着学习的深入,博主越来越发现最优化方法的重要性,学习和工作中遇到的大多问题都可以建模成一种最优化模型进行求解,比如我们现在学习的机器学习算法,大部分的机器学习算法的本质都是建立优化模型,通过最优化方法对目标函数(或损失函数)进行优化,从而训练出最好的模型。常见的最优化方法有梯度下降法、牛顿法和拟牛顿法