Answered
Neural network to control prosthesis
What is Unity? There is no attached code. "indice" is undefined 30 dual channel signals 5 features per channel ...

10 years ago | 0

| accepted

Answered
getting error "Undefined function or method 'logistic' for input arguments of type 'double'.""
If you have the Neural Network Toolbox just use LOGSIG or TANSIG otherwise, just use TANH. Also see Subject: NEUR...

10 years ago | 0

| accepted

Answered
how to maximize one of the output and minimize the other output of gamultiobj?
Multiply one by a minus sign. Then maximize both. Hope this helps. *Thank you for formally accepting my answer* Greg...

10 years ago | 0

| accepted

Answered
NARX Neural network prediction?
See my answer in the NEWSGOUP Subject: Feedforward net lagged output From: Greg Heath Date: 28 Jun, 2015 15:17:03 M...

10 years ago | 0

| accepted

Answered
Problem getting adapt to work with my existing NARXNET: “Number of inputs does not match net.numInputs”
If you have a trained net (e.g., narxnet(ID,FD,H) ) with maxlag = max(ID,FD), you cannot get a result for a new sequence that is...

10 years ago | 0

| accepted

Answered
What is the search range of a hidden layer size in a regression task?
[ I N ] = size(x) [ O N ] = size(t) Ntrn = N - 2*round(0.15)*N) % default Ntrneq = Ntrn*O % No of training equations...

10 years ago | 0

| accepted

Answered
Machine learning for peak characterisation
I am only familiar with the latter, so I cannot compare. If noisy data peaks thwart your feature detection, preprocess with a...

10 years ago | 0

Answered
Back Propagation Accuracy improvement
Why aren't you using the classification nets patternnet(special form of feedforwardnet) or newpr (special form of newff) with o...

10 years ago | 0

| accepted

Answered
How to keep ANN training result stable?
The variations tend to come from 1. The random number seed (I like rng(4151941)) 2. The random division of data 3. The r...

10 years ago | 0

| accepted

Answered
how to calculate the output of neural network manually using input data and weights.
When I-dimensional "I"nput x and O-dimensional "O"utput target t are normalized via the default mapminmax (or mapstd),the relati...

10 years ago | 0

| accepted

Answered
In neural network, how to specify initial bias according to the known initial weight?
Insufficient Information. How did you get your current weights? All initial weights and biases should be random. F...

10 years ago | 0

Answered
target and input matrix in Neural network (ANN)
For good generalization to unseen data: For each class the number of samples should exceed the number of input features by a ...

10 years ago | 0

| accepted

Answered
Why 'net.IW{1,1}' will return negative value and smaller value like -0.0090, 0.2447, and so on.
[ 10 3 ] = size(IW) Do not worry about the size or sign of a single weight in a single design. Typically, it is almost imposs...

10 years ago | 1

| accepted

Answered
How do you make a prediction (forecast) from a trained network for a given input using NARX?
The time series is described by a difference equation. Therefore, it should not surprise you that you need to prescribe the init...

10 years ago | 0

| accepted

Answered
Strange neural network output
Just modify the following close all, clear all, clc, tic [ x, t ] = simplefit_dataset; [ I N ] = size(x), [O N ] = size(t...

10 years ago | 0

| accepted

Answered
how to forecast with nonlinear autoregressive neural networks
This is a highly auto-correlated series. You can get good results with with 1 delay and NO hidden layer : net = narNET(1,[])...

10 years ago | 1

| accepted

Answered
Problem getting adapt to work with my existing NARXNET: “Number of inputs does not match net.numInputs”
You have to use preparets to determine the syntax of the input, target, input delay and feedback delay. Those are the inputs to ...

10 years ago | 0

Answered
NaN in Neural network training and simulation; tonndata
Do not refer to NaN as " No value ". It stands for "Not a Number" and is just referred to as NaN pronounced as en-ay-en. c...

10 years ago | 0

| accepted

Answered
how to get confusion matrix when neural network toolbox is used?
Feedforwardnet is a generic net that NEVER has to be called directly. Use fitnet for regression/curvefitting and use patternn...

10 years ago | 2

| accepted

Answered
Good performance, poor output with NARNET
I'm really surprised by these posts. Just within the past year or so I've posted several times regarding 1. How to identify ...

11 years ago | 1

| accepted

Answered
What is the Normalized MSE algorithm for the NN performance?
The purpose of a regression or curve-fitting net is, given the input signal variations, to model the corresponding target variat...

11 years ago | 0

Answered
Neural network predicting impossible values
If you must have normalized outputs in the range [-1,1], Replace the default output transfer function of PURELIN with TANSIG...

11 years ago | 1

| accepted

Answered
NN NARX Basic question
The output will be different because it depends on previous outputs and inputs in addition to the current input. Hope this he...

11 years ago | 0

| accepted

Answered
training the neural network and then maximising the outputs using genetic algorithm
Corrections: 1. Use x, t and y to represent input, target and output, respectively. 2. Your inputs and targets are incomp...

11 years ago | 0

| accepted

Answered
how to write a code for fitness function(i don't have the exact fitness function but have the training data)?
So far, the problem is ill-posed because " for which both the outputs y1 and y2 are maximum " doesn't make sense. There is no...

11 years ago | 0

| accepted

Answered
Good performance, poor output with NARNET
None of these results are acceptable. A good goal is NMSE << 1. For example, 0.005 or 0.01.

11 years ago | 0

Answered
How can I add layers to a neural network in MATLAB ANN toolbox?
net = fitnet([H1 H2 H3]); However, why in the world would you want to complicate an already universal approximator by adding...

11 years ago | 0

| accepted

Answered
If possible in neural networks turn off automatic data normalization?
Or course. You can change any default that you want. [ x,t] = simplefit_dataset; Now, what do you see when you enter each ...

11 years ago | 0

Answered
what type of input is given for ANN (neural network)?
The MFCCs should be the inputs. For c classes the corresponding target columns should be columns of the unit matrix eye(c). The ...

11 years ago | 0

Load more