Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. # Dimensionality Reduction using Maximum Variance Unfolding (MVU)
  2.  
  3. # Original correlation matrix with values
  4. 1.000000 -0.985771 0.978874
  5. -0.985771 1.000000 -0.954350
  6. 0.978874 -0.954350 1.000000
  7.  
  8. # Original correlation matrix with only signs
  9. 1 1 - 1
  10. 2 - 2 2 -
  11. 3 3 - 3
  12.  
  13. # Kernel matrix
  14. 6.545272 -8.342967 1.797695
  15. -8.342967 10.672854 -2.329886
  16. 1.797695 -2.329886 0.532191
  17.  
  18. # Sorted Normalised Eigenvalues (ei) of Kernel matrix
  19. e1 0.997598
  20. e2 0.002402
  21. e3 0.000000
  22.  
  23. # Number of Principal Components (Nv) that account for (theta)
  24. Nv=1
  25. theta=0.997000
  26.  
  27. # Sorted Eigenvectors (Vj) of Kernel matrix
  28. V1(PCA1) V2(PCA2) V3(PCA3)
  29. -0.607381 0.545669 -0.577350
  30. 0.776254 0.253173 -0.577350
  31. -0.168873 -0.798842 -0.577350
  32.  
  33. # Objectives picked by each sorted PCA denoted by 1 else by 0
  34. V1(PCA1) V2(PCA2) V3(PCA3)
  35. f1 1 f1 1 f1 1
  36. f2 1 f2 1 f2 0
  37. f3 1 f3 1 f3 1
  38.  
  39. # Objectives set after reduction by Eigenvalue Analysis
  40. Fe = { f1 f2 f3 }
  41.  
  42. # Matrix of objectives correlated based just on their signs (Equation 3.1)
  43. 1 2 3
  44. 1 0 1 0 1 1
  45. 2 0 2 0 2 0
  46. 3 1 3 0 3 0
  47.  
  48. # Computation of Tcor (Equation 4)
  49. Tcor = 1.0-e1(1.0-M2sigma/M) = 1.0-0.997598(1.0-1/3) = 0.334934
  50.  
  51. # Without Threshold: Identically Correlated set of objectives in Fe
  52. S1={ f1 f3 }
  53. S2={ f2 }
  54. S3={ f3 f1 }
  55.  
  56. # Threshold Based: Identically Correlated set of objectives in Fe
  57. S1={ f1 f3 }
  58. S2={ f2 }
  59. S3={ f3 f1 }
  60.  
  61. # Objective selection score (ci=sum(ei*|fij|))
  62. f1 0.605923
  63. f2 0.774390
  64. f3 0.168467
  65.  
  66. # Variance accounted by each objective over all Principal Components (ciM=sum(ei*fij^2))
  67. f1 0.368741
  68. f2 0.601277
  69. f3 0.029982
  70.  
  71. # Sorted variance accounted by each objective over all Principal Components (ciM=sum(ei*fij^2))
  72. f2 0.601277
  73. f1 0.368741
  74. f3 0.029982
  75.  
  76. # Final Set
  77. (Fs) = 1 2
  78. Size = 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement