質問編集履歴
3
追記
test
CHANGED
@@ -1 +1 @@
|
|
1
|
-
inverse_transformは何をしているのかが知りたい
|
1
|
+
PCAのinverse_transformは何をしているのかが知りたい
|
test
CHANGED
File without changes
|
2
追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -55,3 +55,27 @@
|
|
55
55
|
print(inspect.getsource(PCA))
|
56
56
|
|
57
57
|
```
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
追記
|
62
|
+
|
63
|
+
下記のコードで関数の中身が見れらしたが、self.whitenが何を指しているのかが分かりませんでした。
|
64
|
+
|
65
|
+
whiten : bool, optional (default False)
|
66
|
+
|
67
|
+
When True (False by default) the `components_` vectors are multiplied
|
68
|
+
|
69
|
+
by the square root of n_samples and then divided by the singular values
|
70
|
+
|
71
|
+
to ensure uncorrelated outputs with unit component-wise variances.
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
```python
|
76
|
+
|
77
|
+
import inspect
|
78
|
+
|
79
|
+
inspect.getsource(PCA.inverse_transform)
|
80
|
+
|
81
|
+
```
|
1
2番目のコードが出ていなかったため修正
test
CHANGED
File without changes
|
test
CHANGED
@@ -44,6 +44,8 @@
|
|
44
44
|
|
45
45
|
|
46
46
|
|
47
|
+
|
48
|
+
|
47
49
|
```python
|
48
50
|
|
49
51
|
from sklearn.decomposition import PCA
|