Good simple video, thankyou although would be a better to follow without the background music. Also would be good to show input of unseen data from manual input
Please Im new here. Im working on a project on Using ATLAB (using machine learning for predictive maintenance .) Could you share the code? I have joined the Telegram group
Sir, you have saved my life.....Lots of prayers for you and your family growth .....Stay happy always ..No words to say thankyou sir
@@trevorouma1411 I have collected data by inducing emotion among participants
clear all;
clc;
%% Prepare the dataset
x = banknotes(:, 1:4);
y = banknotes(:,5);
rand = randperm(1372);
xtr = x(rand(1:1100), :);
ytr = y(rand(1:1100), :);
xt = x(rand(1101:end), :);
yt = y(rand(1101:end), :);
%% Training the model
model = fitcsvm(xtr, ytr, 'KernelFunction', 'rbf', ...
'OptimizeHyperparameters', 'auto', ...
'HyperparameterOptimizationOptions', struct('AcquisitionFunctionName', ...
'expected-improvement-plus', 'ShowPlots', true));
%% Test the model
result = predict(model, xt);
accuracy = sum(result == yt)/length(yt)*100;
sp = sprintf("Test Accuracy = %.2f", accuracy);
disp(sp);
Good simple video, thankyou although would be a better to follow without the background music. Also would be good to show input of unseen data from manual input
can you share the video regarding bearing fault classification using CNN in MATLAB sir
I just wanted to know how to get that Objective function model
Thank you very much it was really helpful for my thesis!
it's a pleasure
nice video sir. and what if we use a data testing from another set data? can you explain me how to do this? thanks alot sir
how can be clasiffiyethe multiclass classification using SVM
Thanks sir, i'm working on eye detection tumor can you help me to use this code in my project please ?!
sir can you plz provide the simulation diagram
Please Im new here. Im working on a project on Using ATLAB (using machine learning for predictive maintenance .) Could you share the code? I have joined the Telegram group
Wow! helpful Video.
I joined to your telegram group and I couldn't get the code. can you share me the code please?
clear all;
clc;
%% Prepare the dataset
x = banknotes(:, 1:4);
y = banknotes(:,5);
rand = randperm(1372);
xtr = x(rand(1:1100), :);
ytr = y(rand(1:1100), :);
xt = x(rand(1101:end), :);
yt = y(rand(1101:end), :);
%% Training the model
model = fitcsvm(xtr, ytr, 'KernelFunction', 'rbf', ...
'OptimizeHyperparameters', 'auto', ...
'HyperparameterOptimizationOptions', struct('AcquisitionFunctionName', ...
'expected-improvement-plus', 'ShowPlots', true));
%% Test the model
result = predict(model, xt);
accuracy = sum(result == yt)/length(yt)*100;
sp = sprintf("Test Accuracy = %.2f", accuracy);
disp(sp);
Thank you