Error in dlnetwork/initialize in GAN
7 次查看(过去 30 天)
显示 更早的评论
dlnetGenerator = dlnetwork(lgraphGenerator);
Used the code from mathworks website, Train Generative Adversarial Network (GAN) - MATLAB & Simulink (mathworks.com)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/762946/image.png)
2 个评论
Walter Roberson
2021-10-10
If you run the example on MATLAB Online then the function is defined at
/MATLAB Drive/Examples/R2021b/nnet/TrainGenerativeAdversarialNetworkGANExample/feature2image.m
采纳的回答
Walter Roberson
2021-10-10
When you
openExample('nnet/TrainGenerativeAdversarialNetworkGANExample')
the file will be copied into the directory that is created to host the example, which would be
fullfile('MATLAB', 'Examples', 'R2021b', 'nnet', 'TrainGenerativeAdversarialNetworkGANExample', 'feature2image.m')
probably relative to your Documents directory. For example for me on MacOS it would be
/Users/roberson/Documents/MATLAB/Examples/R2021b/nnet/TrainGenerativeAdversarialNetworkGANExample/feature2image.m
The "master" copy of the file lives at
fullfile(matlabroot, 'examples', 'nnet', 'main', 'feature2image.m')
which is not on your MATLAB path. The copy there is not intended to be executed out of that location; it is intended that you use openExample() to created the correct environment.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!