필터 지우기
필터 지우기

what this function do?

조회 수: 1 (최근 30일)
mohammed mahmoud
mohammed mahmoud 2018년 3월 25일
댓글: Walter Roberson 2018년 3월 26일
function inputs = getBatchHdd(imdb, batch)
args_data = [{imdb.images.data(batch)} imdb.args];
noise = imdb.images.noise(:,:,:, batch);
label0 = imdb.images.label0(:,:,:, batch);
label1 = imdb.images.label1(:,:,:, batch);
data = vl_imreadjpeg(args_data{:});
data = data{1}/255*2-1; % set in the range of [-1:1]
if (imdb.gpus == true)
noise = gpuArray(noise);
data = gpuArray(data);
label0 = gpuArray(label0);
label1 = gpuArray(label1);
end
inputs = ({'noise', noise, 'data', data, 'label0',label0 'label1',label1} );
return;
  댓글 수: 2
mohammed mahmoud
mohammed mahmoud 2018년 3월 25일
yes

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2018년 3월 25일
편집: Walter Roberson 2018년 3월 25일
It pre-processes the data for the given batch number to scale it to [-1 +1], and creates a cell array with the corresponding noise array, data, and two label entries. If the gpus option is set it creates those arrays on the GPU. Oh, and it looks like it might read the image from disk along the way.
  댓글 수: 2
mohammed mahmoud
mohammed mahmoud 2018년 3월 26일
Thanks, but i don`t understand the step of add noise.
Walter Roberson
Walter Roberson 2018년 3월 26일
The function does not add noise: it retrieves a noise array that has already been calculated during the database creation. The noise will not be added to the data until later in the processing.
The noise array is created in src/cnn_train_dag_dcgan as
imdb.images.noise = single(randn(1, 1, 100, imdb.nSample, 'single'));
The surrounding comments indicate that the noise is pre-created for the purposes of reproducibility.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multirate Signal Processing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by