Câu hỏi được gắn thẻ «svd»

Phân rã giá trị số ít (SVD) của ma trận Ađược đưa ra bởi trong đó và là ma trận trực giao và là ma trận đường chéo. Một= =BạnSVBạnVS

2
Tại sao tôi không thể có được SVD hợp lệ của X thông qua phân tách eigenvalue của XX 'và X'X?
Tôi đang cố gắng làm SVD bằng tay: m<-matrix(c(1,0,1,2,1,1,1,0,0),byrow=TRUE,nrow=3) U=eigen(m%*%t(m))$vector V=eigen(t(m)%*%m)$vector D=sqrt(diag(eigen(m%*%t(m))$values)) U1=svd(m)$u V1=svd(m)$v D1=diag(svd(m)$d) U1%*%D1%*%t(V1) U%*%D%*%t(V) Nhưng dòng cuối cùng không quay trở mlại. Tại sao? Nó dường như có liên quan đến các dấu hiệu của những người bản địa này ... Hay tôi đã hiểu sai quy …
9 r  svd  eigenvalues 






3
Cách thực hiện SVD để áp đặt các giá trị bị thiếu, một ví dụ cụ thể
Tôi đã đọc những bình luận tuyệt vời về cách xử lý các giá trị bị thiếu trước khi áp dụng SVD, nhưng tôi muốn biết nó hoạt động như thế nào với một ví dụ đơn giản: Movie1 Movie2 Movie3 User1 5 4 User2 2 5 5 User3 3 …
8 r  missing-data  data-imputation  svd  sampling  matlab  mcmc  importance-sampling  predictive-models  prediction  algorithms  graphical-model  graph-theory  r  regression  regression-coefficients  r-squared  r  regression  modeling  confounding  residuals  fitting  glmm  zero-inflation  overdispersion  optimization  curve-fitting  regression  time-series  order-statistics  bayesian  prior  uninformative-prior  probability  discrete-data  kolmogorov-smirnov  r  data-visualization  histogram  dimensionality-reduction  classification  clustering  accuracy  semi-supervised  labeling  state-space-models  t-test  biostatistics  paired-comparisons  paired-data  bioinformatics  regression  logistic  multiple-regression  mixed-model  random-effects-model  neural-networks  error-propagation  numerical-integration  time-series  missing-data  data-imputation  probability  self-study  combinatorics  survival  cox-model  statistical-significance  wilcoxon-mann-whitney  hypothesis-testing  distributions  normal-distribution  variance  t-distribution  probability  simulation  random-walk  diffusion  hypothesis-testing  z-test  hypothesis-testing  data-transformation  lognormal  r  regression  agreement-statistics  classification  svm  mixed-model  non-independent  observational-study  goodness-of-fit  residuals  confirmatory-factor  neural-networks  deep-learning 

1
SVD của ma trận dữ liệu (PCA) sau khi làm mịn
Giả sử tôi có ma trận dữ liệu trung tâm với SVD A = U \ Sigma V ^ {T} .n×mn×mn \times mAAAA=UΣVTA=UΣVTA = U \Sigma V^{T} Ví dụ: m=50m=50m=50 cột (số đo) là phổ với n=100n=100n=100 tần số khác nhau. Ma trận được căn giữa để các hàng của …
8 pca  smoothing  svd 

Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.