Error saying ''Dot Indexing is not supported for variables of this type".

41 ビュー (過去 30 日間)
Sowparnika
Sowparnika 2022 年 12 月 5 日
コメント済み: Sowparnika 2022 年 12 月 21 日
Iam studying about ''Unsupervised Day to Dusk image translation using UNIT''.Source code is given in below link.
I executed the code in MATLAB R2022a.While training It shows me an error indicating "Dot indexing is not supported for variables of this type" in adamupdate built-in function (line 152) , deep.internal.networkContainerFixedArgsFun (line 29) and in deep.internal.recording.containerfeval ((line 38,194,358,460). So I analzed all functions and guessed that the actual error is in line 460 and I have attached the corresponding code below. I tried to resolve the error by modifying the below code but it shows "Access denied".
function args = iTablesToCells(args)
% Convert a set of tables to cell arrays of arguments.
if ~isempty(args)
% Extract Value cell arrays from inputs
for input=1:numel(args)
args{input} = args{input}.Value;
end
end
end
So I can't able to modify the built-in source code "deep.internal.recording.containerfeval" (This function is called inside "deep.internal.networkContainerFixedArgsFun" and this "deep.internal.networkContainerFixedArgsFun" function is called inside adamupdate function). Please tell me where the actual error resides and help me in resolving the above stated error.
  6 件のコメント
Walter Roberson
Walter Roberson 2022 年 12 月 6 日
I ran it without gpu, but I did not tell it to train the network
Sowparnika R S
Sowparnika R S 2022 年 12 月 6 日
ok sir. Thank you

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

回答 (2 件)

Image Analyst
Image Analyst 2022 年 12 月 5 日
編集済み: Image Analyst 2022 年 12 月 5 日
@Sowparnika and @Sowparnika R S It doesn't make any sense to have a function to extract contents/variables out of a cell array, args, just to put it back in the same cell array as output.
You need to know what to expect. For example if args contains an image, and optionally a threshold value, then you could do this:
function [imageArray, thresholdValue] = iTablesToCells(args)
% Convert a set of tables to cell arrays of arguments.
% Initialize.
imageArray = [];
thresholdValue = 0;
if isempty(args)
return;
end
if numel(args) >= 1
% Extract the image array out of the first cell.
imageArray = args{1};
end
if numel(args) >= 2
% Extract the threshold value out of the second cell.
thresholdValue = args{2};
end
DON'T use input, or any other built-in function name as the name for one of your variables.

Joss Knight
Joss Knight 2022 年 12 月 17 日
This could be a bug, especially if you didn't modify the example code. What is the data you passed to adamupdate?
  11 件のコメント
Joss Knight
Joss Knight 2022 年 12 月 21 日
Using the debugger, step through the code and check that after you first call adamupdate, discDuskAvgGradient is non-empty. Then step through the code and make sure that that value is not deleted before the next call.
Sowparnika
Sowparnika 2022 年 12 月 21 日
Ok sir,will check.

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

カテゴリ

Help Center および File ExchangeCustom Training Loops についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by