mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-03 08:42:39 +02:00
17 lines
317 B
Python
17 lines
317 B
Python
|
|
'''
|
||
|
|
Created on 24 Feb 2014
|
||
|
|
|
||
|
|
@author: maxz
|
||
|
|
'''
|
||
|
|
|
||
|
|
import numpy as np
|
||
|
|
from linalg import PCA
|
||
|
|
|
||
|
|
def initialize_latent(init, input_dim, Y):
|
||
|
|
Xr = np.random.randn(Y.shape[0], input_dim)
|
||
|
|
if init == 'PCA':
|
||
|
|
PC = PCA(Y, input_dim)[0]
|
||
|
|
Xr[:PC.shape[0], :PC.shape[1]] = PC
|
||
|
|
else:
|
||
|
|
pass
|
||
|
|
return Xr
|