promideson asked . 2021-07-29

does anybody ever use neural network to do a prediction

does anybody ever use neural network to do a prediction with regularization optimization instead of early stopping?

Hi, everyone, I am trying to train a neural network (NN) for prediction, to prevent overfitting, I chose to use regularization method for optimization, so I chose 'trainbr' as the training function, and 'msereg' as the performance function. The input and output data are preprocessed to constrain them to be within [-1,1]. And the data is divided into 2 groups randomly, one for training (70%), one for testing (30%).
 
Below is part of my codes, does anyone can help me to check it? I am new learner of NN, not sure whether it's correct or not. The NN I am designing includes one hidden layer, one input layer (6 inputs), and one output layer (one output). I am trying to loop through 1 to 60 of the hidden neurons to find a good result, but right now, the result I get is not good at all, I am considering, maybe the code is not properly written. Thanks!
 
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% for k=1:num %clear; %clc;
 
RandStream.setGlobalStream(RandStream('mt19937ar','seed',1)); % reset the global random number stream to its initial settings, this cause rand,randi and randn to start over, as if in a new matlab session.
 
 
            % Create a Fitting Network
            hiddenLayerSize = k;
            net = fitnet(hiddenLayerSize); % net = fitnet([hiddenLayerSize,nn]); nn is the number of hidden layer
            net=init(net); % initialize the network

            % Choose Input and Output Pre/Post-Processing Functions
            % For a list of all processing functions type: help nnprocess
            net.inputs{1}.processFcns = {'removeconstantrows'};
            net.outputs{2}.processFcns = {'removeconstantrows'};

            % Setup Division of Data for Training, Validation, Testing
            % For a list of all data division functions type: help nndivide
            net.divideFcn = 'divideind';  % Divide data by index
            net.divideParam.trainInd = trnind;
            net.divideParam.testInd = tstind;

            % set the transfer function (activation function) for input and
            % output layers
            net.layers{1}.transferFcn = 'tansig'; % layer 1 corresponds to the hidden layer
            net.layers{2}.transferFcn = 'purelin'; % layer 2 corresponds to the output layer

            % For help on training function 'trainlm' type: help trainlm
            % For a list of all training functions type: help nntrain
            net.trainFcn = 'trainbr';  % Levenberg-Marquardt optimization with Bayesian regularization
            net.trainParam.goal=0.01.*var(targets); % usually set this to be 1% of the var(target)
            net.trainParam.epochs=500;
            net.trainParam.mu_dec=0.8;
            net.trainParam.mu_inc=1.5;
            % Choose a Performance Function
            % For a list of all performance functions type: help nnperformance
            net.performFcn = 'msereg';  % Mean squared error

            % Choose Plot Functions
            % For a list of all plot functions type: help nnplot
            net.plotFcns = {'plotperform','plottrainstate','ploterrhist', ...
              'plotregression', 'plotfit'};

            % Train the Network
            [net,tr] = train(net,inputs,targets);

            % Test the Network
            outputs = net(inputs);
            errors = gsubtract(targets,outputs);
            performance = perform(net,targets,outputs);

            % Recalculate Training and Test Performance
            trainTargets = targets .* tr.trainMask{1};
            testTargets = targets  .* tr.testMask{1};
            trainPerformance = perform(net,trainTargets,outputs);
            testPerformance = perform(net,testTargets,outputs);
            %some statistics codes, not shown here
end

 

neural network for..., mtlab , matlabsolutions

Expert Answer

Kshitij Singh answered . 2024-05-06 13:13:37

 GEH1=' Predictions are performed with timeseries functions'
 GEH2=['You are using FITNET which is used for REGRESSION and CURVEFITTING']
 GEH3 = ['You should have included results from applying 
your code to the MATLAB dataset in the help and doc examples' ]

 close all, clear all, clc
 for i = 1:2
   RandStream.setGlobalStream(RandStream('mt19937ar','seed',1));
   if i == 1
     [ x , t ] = simplefit ;            % help & doc fitnet
   else
     x=[-1:.05:1];t=sin(2*pi*x)+0.1*randn(size(x));%doc trainbr
   end
 net          = fitnet;               % H = 10 default
 net.trainFcn = 'trainbr';
 perfratio    = net.performParam.ratio   % 0.95238 

 % minimization goal is sse(weights)+perfratio*sse(t -y)

 trnratio = net.divideParam.trainratio % 0.7
 valratio = net.divideParam.valratio   % 0.15
 tstratio = net.divideParam.testratio  % 0.15

% trn/val/tst indices will be assigned during training % To obtain them, need to use training record tr:

[ net tr ] = train(net,x,t);

 view(net);
 y = net(x);
 perf(i) = perform(net,y,t) % SAME AS MSE, NOT MINIMIZATION GOAL!
 MSE(i) = mse(t-y)
end

 MSE  = perf         % [1.6979e-11   0.0080867]  
 NMSE = MSE/var(t,1) %[ 3.5535e-11   0.016924 ]
 Rsq  = 1 - NMSE   %[        1     0.98308 ], 


Not satisfied with the answer ?? ASK NOW

Frequently Asked Questions

MATLAB offers tools for real-time AI applications, including Simulink for modeling and simulation. It can be used for developing algorithms and control systems for autonomous vehicles, robots, and other real-time AI systems.

MATLAB Online™ provides access to MATLAB® from your web browser. With MATLAB Online, your files are stored on MATLAB Drive™ and are available wherever you go. MATLAB Drive Connector synchronizes your files between your computers and MATLAB Online, providing offline access and eliminating the need to manually upload or download files. You can also run your files from the convenience of your smartphone or tablet by connecting to MathWorks® Cloud through the MATLAB Mobile™ app.

Yes, MATLAB provides tools and frameworks for deep learning, including the Deep Learning Toolbox. You can use MATLAB for tasks like building and training neural networks, image classification, and natural language processing.

MATLAB and Python are both popular choices for AI development. MATLAB is known for its ease of use in mathematical computations and its extensive toolbox for AI and machine learning. Python, on the other hand, has a vast ecosystem of libraries like TensorFlow and PyTorch. The choice depends on your preferences and project requirements.

You can find support, discussion forums, and a community of MATLAB users on the MATLAB website, Matlansolutions forums, and other AI-related online communities. Remember that MATLAB's capabilities in AI and machine learning continue to evolve, so staying updated with the latest features and resources is essential for effective AI development using MATLAB.

Without any hesitation the answer to this question is NO. The service we offer is 100% legal, legitimate and won't make you a cheater. Read and discover exactly what an essay writing service is and how when used correctly, is a valuable teaching aid and no more akin to cheating than a tutor's 'model essay' or the many published essay guides available from your local book shop. You should use the work as a reference and should not hand over the exact copy of it.

Matlabsolutions.com provides guaranteed satisfaction with a commitment to complete the work within time. Combined with our meticulous work ethics and extensive domain experience, We are the ideal partner for all your homework/assignment needs. We pledge to provide 24*7 support to dissolve all your academic doubts. We are composed of 300+ esteemed Matlab and other experts who have been empanelled after extensive research and quality check.

Matlabsolutions.com provides undivided attention to each Matlab assignment order with a methodical approach to solution. Our network span is not restricted to US, UK and Australia rather extends to countries like Singapore, Canada and UAE. Our Matlab assignment help services include Image Processing Assignments, Electrical Engineering Assignments, Matlab homework help, Matlab Research Paper help, Matlab Simulink help. Get your work done at the best price in industry.