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

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 11 ans il y a | 0

Réponse apportée
Do I need to convert my data to sequence before using Elman neural network.
Yes.

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 11 ans il y a | 0

Réponse apportée
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 ...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 11 ans il y a | 1

| A accepté

Réponse apportée
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...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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,[])...

environ 11 ans il y a | 1

| A accepté

Réponse apportée
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 ...

environ 11 ans il y a | 0

Réponse apportée
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...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 11 ans il y a | 2

| A accepté

Réponse apportée
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 ...

environ 11 ans il y a | 1

| A accepté

Réponse apportée
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...

environ 11 ans il y a | 0

Réponse apportée
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...

environ 11 ans il y a | 1

| A accepté

Réponse apportée
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...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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.

environ 11 ans il y a | 0

Réponse apportée
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...

environ 11 ans il y a | 0

| A accepté

Réponse apportée
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 ...

environ 11 ans il y a | 0

Réponse apportée
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 ...

environ 11 ans il y a | 0

Charger plus