kernel PCA with Kernlab r , out of memory error -


trying apply kernel pca kernlab in r on 12*250,000 data set

 kpc <- kpca(~.,csv.data,kernel="rbfdot",kpar=list(sigma=0.2),features=2) 

getting bellow error

error: cannot allocate vector of size 604.1 gb in addition: warning messages: 1: in crossprod(t(x)) :   reached total allocation of 16305mb: see help(memory.size) 2: in crossprod(t(x)) :   reached total allocation of 16305mb: see help(memory.size) 3: in crossprod(t(x)) :   reached total allocation of 16305mb: see help(memory.size) 4: in crossprod(t(x)) :   reached total allocation of 16305mb: see help(memory.size) 

any suggestion how can manage run algorithm on such large data set?

thanks.


Comments

Popular posts from this blog

sql - can we replace full join with union of left and right join? why not? -

javascript - Parallax scrolling and fixed footer code causing width issues -

iOS: Performance of reloading UIImage(name:...) -