回答済み
Difference between 2D input and multiple input with recurrent neural networks for time series
Written MATLAB should treat the cases the same. Unfortunately I don't have time to prove it Greg

約6年 前 | 1

| 採用済み

回答済み
how can i train my network for test and validation data?
The MATLAB default AUTOMATICALLY splits the data into TRAINING + VALIDATION+TEST SUBSETS in the ratios 0.7/0.15/0.15. For r...

約6年 前 | 0

回答済み
Best Neural Network for Multivariate Regression
Use FITNET. Accept all parameter settings. Train 10 models with different random initial weights If unsuccessful. Repeat wi...

約6年 前 | 0

| 採用済み

回答済み
how can i train my network for test and validation data?
Where is your training data? The MATLAB default is a random choice of trn/val/tst = 0.7/0.15/0.15 I choose candidate values ...

約6年 前 | 0

回答済み
Early Stopping for Deep Networks
It is not clear to me that, based on a random 15% of the data, this is a better choice. It would be interesting to make a formal...

約6年 前 | 1

回答済み
How to compute gradients using the Neural Network Toolbox software through a backpropagation process?
You are confused The target function is constant and independent of the weights. Hope this helps. *Thank you for formal...

約6年 前 | 0

回答済み
Setting the best training / validation ratio in a Neural Network
1. ALWAYS START WITH 10 DESIGNS USING THE MATLAB DEFAULT! 2. Then evaluate the results to determine what to modify. ...

約6年 前 | 1

回答済み
MATLAB Dropout layer during prediciton
help dropout ... It is important to note that when creating a network, dropout will only be used during training. Hope this he...

約6年 前 | 0

回答済み
How to use predict(net,X) with Sequence data or data which have single dimensional input?
How do you expect us to help when you do not show us your code ??? Just the fact that the error involves "predict" and you show...

約6年 前 | 1

回答済み
I am unable to understand the code
See help dlmread doc dlmread Thank you for formally accepting my answer Greg

約6年 前 | 0

回答済み
Problem with Fitnet function
Delete the outer parentheses >> ( net = fitnet(10) ) % ERROR >> net = fitnet(10) % OK !!! Tha...

約6年 前 | 0

回答済み
MLP Pattern discrimination task
Probaby as well as any other technique. *Thank you for formally accepting my answer* Greg

約6年 前 | 1

回答済み
Radial Basis Function Networks
Replace x with t Thank you for formally accepting my answer Greg

約6年 前 | 0

| 採用済み

回答済み
How I can implement a custom hidden and a regression output layer with 2 inputs?
Is that one input a scalar or a vector? Hope this helps **Thank you for formally accepting my answer** Greg

約6年 前 | 0

質問


HOW DO I CUT, COPY AND PASTE ???
I must be missing something textfile ==> MATLAB & MATLAB ==> MATLAB Greg

約6年 前 | 1 件の回答 | 0

1

回答

回答済み
I have xy coordinates as input. My question is: How do I give these xy coordinates as inputs to the neural network?
Order them in the way that is best for YOUR understanding. Given that, multiple rounds of training should yield a good approxim...

約6年 前 | 0

回答済み
neural network for quadratic programming
NNs are designed given target/input pairs. You have no targets. Or am I missing something??? Hope this helps. Greg

約6年 前 | 0

回答済み
Regarding Multi-label transfer learning with googlenet
Decades old solution: Divide each output by the sum to obtain the relative probability ...

約6年 前 | 0

回答済み
Matlab Shallow Network Mini Batch Training
If you have a huge dataset, it is often rewarding to just randomly divide it into m subsets. Then design with 1 and test on m-...

約6年 前 | 0

回答済み
Why is there a error message that says the numbers of input signals and networks inputs do not match?
See my attachment Note that typically, all you have to define is the input and target. Use of CONFIGURE is UNNECESSARY It ca...

約6年 前 | 0

回答済み
How can I modify objective function in "trainingOptions" to suit a particular unusual problem
I think you are confused. 1. Your input and target define your function 2. In general, the standard net with tansig hidde...

約6年 前 | 0

質問


UNABLE TO PASTE INTO COMMENT AND ANSWERS BOXES
Had troubles with the computer. Was able to get it running again. However, now I cannot paste into MATLAB. Any suggestions? ...

約6年 前 | 0 件の回答 | 0

0

回答

回答済み
Do a leave one out cross-validation in patternnet
Over the past decades I have tried every cute data division technique known to man and beast. BOTTOM LINE: The easiest suffi...

約6年 前 | 0

| 採用済み

回答済み
Why does this produce an error?
Remove the square brackets in the first line Thank you for formally accepting my answer Greg

約6年 前 | 0

回答済み
How to use multiple labels as targets in Neural Net Pattern Recognition Toolbox?
The following is standard for classification and pattern recognition: 1. Label the classes from 1 to 14 2. ...

約6年 前 | 1

回答済み
What the function "preparets" does in NARX neural network toolbox
The data in 2 rows are taken to provide the initial delay conditions, Hope this helps. Thank you for formally accepting my a...

約6年 前 | 0

| 採用済み

回答済み
what is the difference between trainlm and trainbr?
One minimizes mean square error The other minimizes a weighted sum of squared errors and squared weights The latter is typ...

約6年 前 | 0

回答済み
Cross Validation in Neural Network ?
You may be confused. The MATLAB DEFAULT is RANDOM DATA DIVISION with 80% training 10% validation (tends to prevent o...

約6年 前 | 0

回答済み
Calculating a Network's Diameter
mean(d(:)) Hope this helps Thank you for formally accepting my answer Greg

約6年 前 | 1

| 採用済み

さらに読み込む