Ask an expert. Trust the answer.
Your academic and career questions answered
by verified experts.
I used the neural network toolbox ( nprtool ) for classifying my objects. i used 75% of data for training and 15% for both validation and testing.also...
What does the Tapped Delay Line (TDL) in NARX NN exactly do? 1- Does it sum the previous values (either input or target) and use as input? Because ...
I have seen that MSE, SSE, MAE and SAE are possible training functions of a neural network in Matlab. Does it have relative square error available? ...
I have written a code , the purpose of the code is classification of EEG datasets related to emotion, I have used both newff and patternet , I have al...
Hi All I have a code , I am just checking how it works , my input matrice is : input = [0.0600000000000000 0.00100000000000000 45 0.050800000000000...
Hello, I'm working currently with prediction-problems for dynamical systems, e.g. single pendulum with friction. At the moment I'm testing neural netw...
Hi, I'd like to ask your support how to get R squared values in NARX Neural Network. Is it function or code to get it? I attach my NARX network as bel...
clear all;clc a=rand(1,1000); b=rand(1,1000); c=rand(1,1000); y=a*2+b*3+c*5 I=[a; b; c;] T=y net = newff([0 1;0 1 ;0 1],[10 1]); net=train(net,I,T); J...
I have decomposed the data into three parts: 70% (training), 10% (validation) and 20% (testing). When I used trial and error approch, I found the smal...
Dear Friends, I have developed a stepwise regression model. I am getting a outlier. I need to know the effective weight of the outlier so that I came ...