필터 지우기
필터 지우기

implementation help of Gaussian RBM in matlab

조회 수: 2 (최근 30일)
subha
subha 2013년 11월 23일
댓글: subha 2013년 11월 28일
First i would like to know how to make visible layer to zero mean and unit variance.I have seen in few example they followed below way.but i couldnot understand
subtracting the corresponding data with its mean and divide it by standard division, my data becomes NaN.
I am new to matlab and Neural networks.
data= batchdata(:,:,batch);
mean_data=mean(data,1),data=bsxfun(data,mean_data);
std_data=std(data,[],1);
data=bsxfun(@rdivide,data,std_data);
i am not able to find the reason
can anybody help to clear this
  댓글 수: 1
Greg Heath
Greg Heath 2013년 11월 23일
"subtracting the corresponding data with its mean and divide it by standard division, my data becomes NaN."
Did it ever occur to you to post that code?

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

채택된 답변

Greg Heath
Greg Heath 2013년 11월 23일
doc zscore
help zscore
doc mapstd
help mapstd
Hope this helps.
  • Thank you for formally accepting my answer*
Greg
  댓글 수: 3
Greg Heath
Greg Heath 2013년 11월 25일
[x, t ] = engine_dataset;
[ I N ] = size(x) % 2 1199
[ O N ] = size(t) % 2 1199
z = [ x; t];
muz = mean(z')';
stdz = std(z')';
% [ muz stdz ] = [ 141.2 090.7
% 1259.5 354.8
% 754.2 548.7
% 961.7 466.1 ]
zn = ( z - repmat(muz,1,N))./repmat(stdz,1,N);
muzn = mean(zn')';
stdzn = std(zn')';
% [ muzn stdzn ] = [ -0.0000 1.0000
% 0.0000 1.0000
% -0.0000 1.0000
% -0.0000 1.0000 ]
subha
subha 2013년 11월 28일
thanks.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Image Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by