'datasetExists' not found (for GAN)

24 visualizaciones (últimos 30 días)
Salad Box
Salad Box el 24 de Mzo. de 2023
Comentada: Salad Box el 28 de Mzo. de 2023
Hi,
I am a beginer in GAN and was trying this example below.
As seen below, the first part of the code is for downloading the Flower data set. In there (in the code) it has something called "datasetExists".
% Download and extract the Flower data set
url = "http://download.tensorflow.org/example_images/flower_photos.tgz";
downloadFolder = tempdir;
filename = fullfile(downloadFolder,"flower_dataset.tgz");
imageFolder = fullfile(downloadFolder,"flower_photos");
if ~datasetExists(imageFolder)
disp("Downloading Flowers data set (218 MB)...")
websave(filename,url);
untar(filename,downloadFolder)
end
But when I put these code in, I got "datasetExists" not found.
I got this in the command window.
Then I clicked the second link from the bottom, it opens up the datasetExists function. But it still doesn't help.
How to deal with this Error? I am not entirely sure. Can anyone share some opinions or advices please? Very much appreciated!!

Respuesta aceptada

Sivylla Paraskevopoulou
Sivylla Paraskevopoulou el 24 de Mzo. de 2023
Movida: Adam Danz el 24 de Mzo. de 2023
Hi! How are you opening the example? If you use this command:
openExample('nnet/TrainGenerativeAdversarialNetworkGANExample')
Then you open the example in a folder that includes all supporting files. One of these supporting files is datasetExists.m. If you are just copying and pasting parts of the example into your own script or at the command line, you will not have access to the supporting files, unless you add them to your current folder or path.
  1 comentario
Salad Box
Salad Box el 28 de Mzo. de 2023
Thank you for your reply. If I click on "try this example", I can't really see the output line by line. I was just trying to understand what each line means by looking at the outputs.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Logical en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by