trainnet gives training loss is NaN

53 次查看(过去 30 天)
Aliya Sekar
Aliya Sekar 2024-7-11,1:46
编辑: Joss Knight 2024-7-11,17:06
Hello, I'm currently working on semantic segmentation with Unet architecture on matlab. As version R2024a, I tried to train my model with the trainnet command. But after I ran my script, it gives me this result in Command Window.
I tried to change the MiniBatchSize and MaxEpoch but none seem to be working, it seemed like the training never happened because my GPU doesn't seem to have any activity. Does anyone know how to resolve this? Is Matlab R2024a still buggy so this happens?

回答(3 个)

Maneet Kaur Bagga
Maneet Kaur Bagga 2024-7-11,5:36
Hi Aliya,
I understand that you are encountering an issue where the training loss is "NaN", causing the training to stop.To debug the issue please refer to the following steps:
  • Enable verbose output in your training options to get more detailed information about each training step.
  • Verify that your MATLAB installation is correctly configured to use the GPU. You can use the following command to check the status of your GPU.
gpuDevice
Please refer to the the following code snippet to set your training options:
options = trainingOptions('adam', ...
'InitialLearnRate', 1e-4, ...
'MaxEpochs', 50, ...
'MiniBatchSize', 16, ...
'Plots', 'training-progress', ...
'Verbose', true, ...
'ExecutionEnvironment', 'gpu'); % Ensure you specify 'gpu' if you have a compatible GPU
I hope this helps!

Shreeya
Shreeya 2024-7-11,5:48
Hey Aliya
I see that you are not able to train your UNET model due to Nan loss. There are a few troubleshooting methods you can try:
  1. Try to fiddle around with the learning rate on a smaller dataset to ensure if this is or isnt the root cause.
  2. If the image size is huge, you may need a bigger network to converge the model.
  3. I also came across an interesting take on teh usage of PNG images for model training. Essentially, PNG image have layers. During training, only the last layer maybe used, and thus the model learns nothing related to the features of rest of the images.
I'm also linking a few threads which you can refer to, apart from these suggestions:

Joss Knight
Joss Knight 2024-7-11,17:03
编辑:Joss Knight 2024-7-11,17:06
Do your network weights contain NaNs? Try this
nansInMyNetwork = ~(all(cellfun(@allfinite, net.Learnables.Value)) && all(cellfun(@allfinite, net.State.Value)))
You might also want to check the Variance on any batch normalization layers to make sure none of the values are negative.

类别

Help CenterFile Exchange 中查找有关 Image Data Workflows 的更多信息

标签

产品


版本

R2024a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by