https://www.mathworks.com/help/deeplearning/ug/solve-partial-differential-equations-with-lbfgs-method-and-deep-learning.html
The example 'Solve Partial Differential Equation with LBFGS Method and Deep Learning' doesn't work because the supporting file 'paramsStructToVector' function.
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
parametersV = zeros(numParamsTotal,1,'like',parameters.(parameterNames{1}));
The main reason is this code.'parameters.(parameterNames{1})' is a struct lead to the zeros function input specification is not met
Réponse acceptée
James Gross
le 24 Oct 2022
Hello,
The paramsStructToVector helper function converts a struct of learnable parameters to a vector. However, it looks like you have specified parametersV as a vector using zeros.
You will need to specify this variable as a struct before you can use this helper function. The parameterVectorToStruct helper function can be used to convert a vector of parameters with specified names and sizes to a struct.
I hope this information helps! If you need more assistance, could you please confirm if the example as written (i.e. without modification) works on your machine and if you have modified the example in any way? If so, could you please provide additional information as to how you have modified the example (perhaps some example code)?
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Image Data Workflows dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!