Logo: Max Planck Institute for Biological Cybernetics
MPI for Biological Cybernetics
Dept. Schölkopf
Spemannstraße 38
72076 Tübingen
 
Telephone:  +49-7071-601-584
Telefax:  +49-7071-601-552
Room:  222
e-mail: 
 

 
 
 
  My research is currently focussed on approximate inference in probabilistic models such as Gaussian processes or the linear model with sparsity prior.
FWTN - The Fast Wavelet-Transformation for D dimensional data in L levels.
C-code including Matlab MEX file and Matlab Demo-Skript.

    qmf = [1,1]/sqrt(2); % Haar Wavelet
    L   = 3;             % # Levels in the pyramid
    W   = fwtn(X,L,qmf); % apply FWT, inverse: X = fwtn(W,L,qmf,1);

approxXX - a number of approximation methods for binary Gaussian
process classification implemented in Matlab and using the GPML interface.

    lhyp = [1; 1];      % ell,sig - GP parameters
    cov  = {'covSEiso'};% covariance function
    lik  = 'cumGauss';  % logistic or cumGauss likelihood
    apx  = 'LA';        % EP,FV,IVM,KL,LA,LR,OLEP,SO,TAP,TAPnaive or VB
    p = binaryGP(lhyp, ['approx',apx], cov, lik, x, y, xtest); % prediction