资源简介
用MATLAB实现基于支持向量机的垃圾邮件分类
代码片段和文件信息
function [C sigma] = dataset3Params(X y Xval yval)
%DATASET3PARAMS returns your choice of C and sigma for Part 3 of the exercise
%where you select the optimal (C sigma) learning parameters to use for SVM
%with RBF kernel
% [C sigma] = DATASET3PARAMS(X y Xval yval) returns your choice of C and
% sigma. You should complete this function to return the optimal C and
% sigma based on a cross-validation set.
%
% You need to return the following variables correctly.
C = 1;
sigma = 0.3;
% ====================== YOUR CODE HERE ======================
% Instructions: Fill in this function to return the optimal C and sigma
% learning parameters found using the cross validation set.
% You can use svmPredict to predict the labels on the cross
% validation set. For example
% predictions = svmPredict(model Xval);
% will return the predictions on the cross validation set.
%
% Note: You can compute the predi
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-03-11 13:40 spam-filter-master\
文件 57 2018-03-11 13:40 spam-filter-master\README.md
文件 1751 2018-03-11 13:40 spam-filter-master\dataset3Params.m
文件 2221 2018-03-11 13:40 spam-filter-master\emailFeatures.m
文件 393 2018-03-11 13:40 spam-filter-master\emailSample1.txt
文件 1301 2018-03-11 13:40 spam-filter-master\emailSample2.txt
文件 4152 2018-03-11 13:40 spam-filter-master\ex6.m
文件 4594 2018-03-11 13:40 spam-filter-master\ex6_spam.m
文件 981 2018-03-11 13:40 spam-filter-master\ex6data1.mat
文件 7604 2018-03-11 13:40 spam-filter-master\ex6data2.mat
文件 6038 2018-03-11 13:40 spam-filter-master\ex6data3.mat
文件 723 2018-03-11 13:40 spam-filter-master\gaussianKernel.m
文件 761 2018-03-11 13:40 spam-filter-master\getVocabList.m
- 上一篇:简单图片拼接(Matlab)
- 下一篇:matlab tree实现
相关资源
- 雷达压制干扰matlab程序
- 系统辨识,使用者的理论
- MATLAB仿真林飞、杜欣编著.pdf
- 基于HMM的语音识别MATLAB代码
- 关于均衡的MATLAB程序合集
- 数字滤波器的MATLAB与FPGA实现代码
- 滑模变结构控制MATLAB仿真 第3版 基本
- Matlab火焰烟雾检测(GUI)
- 帧间差分法matlab
- Matlab MPT工具箱 MPT3.2.1 (2019更新 稳
- 《模式识别与智能计算的MATLAB实现》
- 基于sift和SVM算法实现的手势识别 MA
- 数字图像处理第三版冈萨雷斯英文附
- 《精通MATLAB图像处理》全书pdf高清完
- 斯坦福机器学习公开课CS229讲义作业及
- MATLAB神经网络30个案例分析(高清版)
-
微网运行控制simuli
nk仿真,包含逆变 - MATLAB数据分析方法
- MATLAB图像处理:能力提高与应用案例
- MATLAB.Programming.for.Engineers.5th.Edition_2
- 卷积神经网络的matlab程序
- MATLAB优化算法案例分析与应用_进阶篇
- 精通MATLAB数字图像处理与识别书本代
- 冈萨雷斯数字图像处理MATLAB版图片及
- 人脸识别 MATLAB代码
- MNIST手写字体识别CNN+BP两种实现-Matl
- Matlab课程设计:对作业文档格式化批
-
MATLAB Simuli
nk系统仿真 课件 李献 - 基于MATLAB的数字图像处理研究_郑继刚
- 梁瑞宇赵力语音信号处理实验教程m
评论
共有 条评论