资源简介
Softmax 函数处理,softmax 用于 Deep Learning 后的分类器的实现与识别,此函数的参数经过优化,有较强的泛化能力和性能
代码片段和文件信息
function [cost grad] = softmaxCost(theta numClasses inputSize lambda data labels)
% numClasses - the number of classes
% inputSize - the size N of the input vector
% lambda - weight decay parameter
% data - the N x M input matrix where each column data(: i) corresponds to
% a single test set
% labels - an M x 1 matrix containing the labels corresponding for the input data
%
% Unroll the parameters from theta
theta = reshape(theta numClasses inputSize);
numCases = size(data 2);
groundTruth = full(sparse(labels 1:numCases 1));
cost = 0;
thetagrad = zeros(numClasses inputSize);
%% ---------- YOUR CODE HERE --------------------------------------
% Instructions: Compute the cost and gradient for softmax regression.
% You need to compute thetagrad and cost.
% The groundTruth matrix might come in handy.
% ------------------------------------------------------------------
% Unroll the gradient matrices into a vector for minFunc
grad = [thetagrad(:)];
end
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1033 2020-11-28 12:27 softmaxCost.m
文件 4775 2020-11-28 12:27 softmaxExercise.m
文件 713 2020-11-28 12:27 softmaxPredict.m
文件 1891 2020-11-28 12:27 softmaxTrain.m
- 上一篇:ssa奇异谱分析
- 下一篇:Series Forcast 用于时间序列的预测
相关资源
- 《精通Matlab数字图像处理与识别》(
- 5阶WENO有限差分法求解Sod型激波管问题
- foa 果蝇优化算法matlab程序
- CA元胞自动机源代码
- 应用条件随机场CRF 知识分割图像
- PSOGSA_v3
- 发动机悬置系统解耦率、固有频率以
- G-S算法matlab程序源代码
- DATCOM弹道计算工具
- matlab实现节点定位的三边定位算法
- CLAHE的matlab实现算法
- chan算法的源代码
- calculateuserposition 用MATLAB编写求解伪距
- ELM算法进行遥感图像分类
-
3电平光伏并网逆变器matlab/simuli
nk仿 - matlab量化择时模型回测
- 求解四步相移法的光栅相位的matlab程
- 多目标跟踪时的逻辑航迹起始算法
- 级联H桥三相七电平matlab仿真
- matlab实现加权最小二乘拟合
- MATLAB实现协同过滤算法
- matlab编写运动视频检测
- 分数阶傅里叶变换
- Bouc-wen模型模拟隔震支座
- LBM格子波尔兹曼 matlab范例
- 中重频PD雷达仿真
- 《神经模糊预测控制及其matlab实现》
- matlab程序求解供应链网络问题
- KKSVD
- matlab GUI编程实现模拟车辆进入和离开
评论
共有 条评论