統計
All
Feeds
回答済み
Availability of upsampling and batch normalization layer in neural network toolbox
batchNormalizationLayer is available from 2017a. resize2DLayer is available from R2020b.
Availability of upsampling and batch normalization layer in neural network toolbox
batchNormalizationLayer is available from 2017a. resize2DLayer is available from R2020b.
28日 前 | 0
回答済み
How can we use Nadam optimizer in place of sgdm in training deep learning networks
You can train with Nadam by defining a custom training loop. The function dlupdate can be used to define custom update rules for...
How can we use Nadam optimizer in place of sgdm in training deep learning networks
You can train with Nadam by defining a custom training loop. The function dlupdate can be used to define custom update rules for...
28日 前 | 0
回答済み
How to use Nadam optimizer in training deep neural networks
You can train with Nadam by defining a custom training loop. The function dlupdate can be used to define custom update rules for...
How to use Nadam optimizer in training deep neural networks
You can train with Nadam by defining a custom training loop. The function dlupdate can be used to define custom update rules for...
28日 前 | 0
解決済み
Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...
8ヶ月 前
回答済み
How to define my own performance function using fitnet besides copying the source code like mse.m?
See this answer for a step by step guide on how to create a custom performance function: https://uk.mathworks.com/matlabcentral...
How to define my own performance function using fitnet besides copying the source code like mse.m?
See this answer for a step by step guide on how to create a custom performance function: https://uk.mathworks.com/matlabcentral...
12ヶ月 前 | 0
| 採用済み
回答済み
Can you please guide utilizing Validation Data along with an image data store?
You can specify validation data in the training options with the ValidationData option. Below I've used your test data set, but ...
Can you please guide utilizing Validation Data along with an image data store?
You can specify validation data in the training options with the ValidationData option. Below I've used your test data set, but ...
1年以上 前 | 0
| 採用済み
回答済み
Text Data through RNN
Here is an example for training an LSTM to classify text: https://mathworks.com/help/textanalytics/ug/classify-text-data-using-...
Text Data through RNN
Here is an example for training an LSTM to classify text: https://mathworks.com/help/textanalytics/ug/classify-text-data-using-...
約2年 前 | 0
回答済み
Error in predicted outputs for labels in neural network
As mentioned here: https://uk.mathworks.com/matlabcentral/answers/1835423-what-s-wrong-with-my-neural-network#answer_1085378 the...
Error in predicted outputs for labels in neural network
As mentioned here: https://uk.mathworks.com/matlabcentral/answers/1835423-what-s-wrong-with-my-neural-network#answer_1085378 the...
約2年 前 | 0
回答済み
What's wrong with my neural network?
I managed to get this to work by reducing the learning rate: x = rand(75,11); y = randi(5, 5, 75); P = x'; T = y; % Set...
What's wrong with my neural network?
I managed to get this to work by reducing the learning rate: x = rand(75,11); y = randi(5, 5, 75); P = x'; T = y; % Set...
約2年 前 | 0
| 採用済み
回答済み
How to improve accuracy of SqueezeNet convolutional neural network?
Getting good performance with deep learning can take some experimenting. I tried some simple things with the data you linked to:...
How to improve accuracy of SqueezeNet convolutional neural network?
Getting good performance with deep learning can take some experimenting. I tried some simple things with the data you linked to:...
約2年 前 | 0
| 採用済み
回答済み
Custom Vnet layer validation failed error
It's tricky to tell without the code for createVnetBn, but I would guess the problem is this line in prelu3dLayer: % Initialize...
Custom Vnet layer validation failed error
It's tricky to tell without the code for createVnetBn, but I would guess the problem is this line in prelu3dLayer: % Initialize...
約2年 前 | 0
回答済み
How to obtain Shapley Values with a pattern classification neural network?
It is possible to do this by passing a function handle to shapley. This function handle needs to output the score for the class ...
How to obtain Shapley Values with a pattern classification neural network?
It is possible to do this by passing a function handle to shapley. This function handle needs to output the score for the class ...
2年以上 前 | 0
| 採用済み
回答済み
train brain tumor dataset
There is an example of training a network to perform 3-D Brain Tumor Segmentation here: https://mathworks.com/help/images/segme...
train brain tumor dataset
There is an example of training a network to perform 3-D Brain Tumor Segmentation here: https://mathworks.com/help/images/segme...
3年弱 前 | 0
回答済み
Is a Bi-GRU available - bidirectional Gated Recurrent Unit (GRU) - or a way to implement a Bi-GRU?
A bi-LSTM layer works by applying two LSTM layers on the data; one in the forward direction and one in the reverse direction. Yo...
Is a Bi-GRU available - bidirectional Gated Recurrent Unit (GRU) - or a way to implement a Bi-GRU?
A bi-LSTM layer works by applying two LSTM layers on the data; one in the forward direction and one in the reverse direction. Yo...
約3年 前 | 4
| 採用済み
回答済み
RMSE for 3D regression of image data
How many values does your network output? If you are using regressionLayer in your network, it will not divide the loss by the n...
RMSE for 3D regression of image data
How many values does your network output? If you are using regressionLayer in your network, it will not divide the loss by the n...
3年以上 前 | 0
回答済み
Activations of freezed layers are different between before/after training, why?
The vectors are different because when you fine tune on a new dataset, the average image in "imageInputLayer" is recalculated fo...
Activations of freezed layers are different between before/after training, why?
The vectors are different because when you fine tune on a new dataset, the average image in "imageInputLayer" is recalculated fo...
6年以上 前 | 1
| 採用済み
回答済み
Custom Neural Network Sample Code Fails on GPU
Instead of using nndata2gpu to prepare your data for GPU training, you can use the 'useGPU' flag. Just change the call to train ...
Custom Neural Network Sample Code Fails on GPU
Instead of using nndata2gpu to prepare your data for GPU training, you can use the 'useGPU' flag. Just change the call to train ...
約7年 前 | 1
回答済み
Neural networks - CUDAKernel/setConstantMemory - the data supplied is too big for constant 'hintsD'
I was able to reproduce your issue. The best solution is to do the GPU training a different way by using the 'useGPU' flag. This...
Neural networks - CUDAKernel/setConstantMemory - the data supplied is too big for constant 'hintsD'
I was able to reproduce your issue. The best solution is to do the GPU training a different way by using the 'useGPU' flag. This...
8年弱 前 | 0
| 採用済み
回答済み
Output processing function REMOVECONSTANTROWS is not supported with GPU.
The error message you are getting suggests that there are rows in your output data which are constant. Without knowing what your...
Output processing function REMOVECONSTANTROWS is not supported with GPU.
The error message you are getting suggests that there are rows in your output data which are constant. Without knowing what your...
8年以上 前 | 2
| 採用済み
回答済み
Error when using 'useGPU' for training neural networks
I suspect that the problem here is related to the type for the variable d1. I managed to replicate your error by using a single ...
Error when using 'useGPU' for training neural networks
I suspect that the problem here is related to the type for the variable d1. I managed to replicate your error by using a single ...
8年以上 前 | 3