問題タブ [gridsearchcv]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
python - PythonのsklearnでGridSearchCVで選択した機能を取得する方法
を使用recurive feature elimination with cross validation (rfecv)
して機能選択手法を使用していGridSearchCV
ます。
私のコードは次のとおりです。
ここで、上記のコードからoptimal number of features
andを取得したいと思います。selected features
そのために、以下のコードを実行しました。
ただし、次のエラーが発生しました:
AttributeError: 'RFECV' object has no attribute 'n_features_'
.
これらの詳細を取得する他の方法はありますか?
必要に応じて詳細をお知らせします。