フィルターのクリア

The example 'Solve Partial Differential Equation with LBFGS Method and Deep Learning' doesn't work because the supporting file 'paramsStructToVector' function.

1 回表示 (過去 30 日間)
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
  1 件のコメント
富坤 陈
富坤 陈 2022 年 10 月 23 日
https://www.mathworks.com/help/deeplearning/ug/solve-partial-differential-equations-with-lbfgs-method-and-deep-learning.html

サインインしてコメントする。

採用された回答

James Gross
James Gross 2022 年 10 月 24 日
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)?
  1 件のコメント
富坤 陈
富坤 陈 2022 年 10 月 25 日
Hello! Dear James Gross,
Thank you very much for your help. I have found the problems and I have solved them.
The main question is that I copied the wrong codes from the other example 'Solve Partial Differential Equations Using Deep Learning'. I think these two examples in the first half using the same codes.
Thanks again!

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSignal Integrity Kits for Industry Standards についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by