Beantwortet
Creating a dataset for neural network training (Speech Recognition)
It looks like you know how to do it. So ... go do it. Yes you might have to use input dimensionality reduction. However, try ...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
How to train NARX neural network in closed loop
close all, clear all, clc disp('DIRECT TRAINING OF A CLOSELOOP NARXNET') load('maglev_dataset'); whos % Name ...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
How to generate neural network equation with weight and bias??
http://www.mathworks.com/matlabcentral/answers/126180-regression-equation-from-artificial-neural-network

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
How to train a Neural Network to give me a classified output based on male or female?
1. Two vectors are insufficient. Look at typical input/target sizes for classifiers help nndatasets doc nndatasets 2. ...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
Training a neural network
Sam harris on 2 Jul 2012 % Create a Nonlinear Autoregressive Network with External Input % inputDelays = 1:1; feedbackDel...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
High error percentage after training neural network
[ 85 130 ] = size(input) [ 26 130 ] = size(target) What non-default input parameters did you use?

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
how can i test an time series NAR NN forecasting tool?
Find feedback delays from the significant delays of the target autocorrelation function. Find input delays from the significa...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
How to prepare the data set to train neural network in nftool?
N pairs of I-dimensional inputs and O-dimensional targets [ I N ] = size(input) [ O N ] = size(target) Hope this hel...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
Bad classification even after training neural network
Two possibilities 1. The training data does not adequately characterize the total data set. 2. The net is overfit with t...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
Is it OK to increase validation checks and decrease min gradient while training neural network?
The most important objective is to obtain an acceptable ratio of mean-square error to mean-target-variance for RANDOM subsets of...

mehr als 12 Jahre vor | 4

| akzeptiert

Beantwortet
How can I solve the following problem?
I do not understand what you are doing. The obvious model to use is a narxnet with no hidden layers: net = narxnet(0:2,1:...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
Query on Neural network results
I = 85, O = 26, N = 130, H = 50 [ I N ] = size(input) % [ 85 130] [ O N ] = size(target) % [ 26 130] Ntrn = N...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
Regression Equation from artificial neural network
The default regression equation between inputs and outputs is a curve in 3-dimensional input space. y = B2 +LW*tansig(B1+IW*...

mehr als 12 Jahre vor | 3

| akzeptiert

Beantwortet
trainbr - question about Effective # Param (gamk)
Check the source code of trainbr. type trainbr You will probably find if statements that discontinuously change one or m...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
Neural network inputs range & normalization
A basic assumption of most statistical regression and classification models is that training, validation and testing data can al...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
how to define unknown class in neural network?
Insufficient information How many images in each class? How many features in each image? What type of neural net? Ho...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
How to create target data for neural netwrok traing
1. Nomenclature: You have one sample. The sample contains N=8, I=32-dimensional input examples from c=8 classes. 2. Are they ...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
correct format for feature matrix in finger print recognition
If you have c classes and N I-dimensional feature vectors [ I N ] = size(input) [ c N ] = size(target) where the colu...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
How to do an analysis of neural model for relationship modelling of a complex system.
Analysis can mean many things. You will have to be more specific. If you have to, ask your teacher what he/she wants.

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
Will I be able to train the neural network with negative values in feature vector?
yes

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
how to define the size of feedback delays and number of hidden layer in narnet ?
Estimate the significant autocorrelation lags using nncorr or fft. Estimate the number of hidden nodes by trial and error. ...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
sensitivity analysis, multilayer, feed-forward, back-propagation neural network using MATLAB.
For a simple MIMO MLP, the I/O relationship is [ I N ] = size(x); [ O N ] = size(y); y = b2 + LW*tanh(b1+IW*x); J...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
Am getting dicomifo error
>> lookfor dicominfo dicominfo - Read metadata from DICOM message. >> help dicominfo dicominfo ...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
can u pls explain the logic of this program in detail?
This is a very poorly designed classifier. My advice is to ignore it and study the classification examples in the help and d...

mehr als 12 Jahre vor | 2

| akzeptiert

Beantwortet
Creating a feature vector & target vector to feed into neural network
size(input) = [ 85 26 ] target = ind2vec(1:26); net = patternnet(H) ;% Determine H by trial and error help patternn...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
what calculation does neural network sim function do?
In a two layer neural network there are two layers of neurons (transfer functions), the hidden layer and the output layer. This ...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
Time Series Ahead Prediction in Neural Network, Large Scale Iterative Training
1. Use narnet with 1 hidden layer containing H hidden nodes. 2. Use nncorr to determine which autocorrelation feedback delays s...

mehr als 12 Jahre vor | 0

Beantwortet
What is best BP training function to train data with following input in MLP?
Defaults are trainlm for regression trainscg for classification and unit column vector targets trainrp for huge data...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
How to write neural networks in form of a function???
h = tanh(b1 + IW*x); y = b2 + LW*h;

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
How to make A Neural Network with following details?
I lost my hand codes when my old computer died. Now I just use the NN Toolbox. I'm sure I and others have posted several version...

mehr als 12 Jahre vor | 0

| akzeptiert

Mehr laden