scaler = preprocessing.StandardScaler().fit(X)
特徴値を前処理するために使用しています。
ただし、実行すると、次のエラーが表示されます。
AttributeError: 'module' object has no attribute 'StandardScaler'
から前処理を正常にインポートしsklearn
て、その「スケール」メソッドを使用できます: X_scaled = preprocessing.scale(X)
.
しかしStandardScaler
、うまくいきません。誰か助けてくれませんか?ありがとう