2022-10

機械学習

機械学習回帰編 考察

importnumpyasnpimportpandasaspdimportpandas_profilingaspdpimportmatplotlib.pyplotasplt%matplotlibinlineimportseabornassn...
機械学習

機械学習回帰編 ハイパーパラメーターの調整

importnumpyasnpimportpandasaspdimportmatplotlib.pyplotasplt%matplotlibinlineimportpicklefromsklearn.model_selectionimpor...
機械学習

機械学習回帰編 改良版モデルの構築

importnumpyasnpimportpandasaspdimportpandas_profilingaspdpimportmatplotlib.pyplotasplt%matplotlibinlinefrommpl_toolkits....
機械学習

機械学習回帰編 欠損値処理(質的)

importnumpyasnpimportpandasaspdimportpandas_profilingaspdpimportmatplotlibasplt%matplotlibinlineformmpl_toolkits.mplot3d...
機械学習

機械学習回帰編 データクレンジング

importnumpyasnpimportpandasaspdimportpandas_profilingaspdpimportmatplotlib.pyplotasplt%matplotlibinlinefrommpl_toolkits....
機械学習

機械学習回帰編 学習、検証データ

importnumpyasnpimportpandasaspdimportpandas_profilingaspdpimportmatplotlib.pyplotasplt%matplotlibinlinefrommpl_toolkits....
機械学習

機械学習 回帰編 データ確認

importnumpyasnpimportpandasaspdimportpandas_profilingaspdpimportmatplotlib.pyplotasplt%matplotlibinlinefrommpl_toolkits....
機械学習

ハイパーパラメーターチューニング 機械学習

ランダムフォレストのパラメータをチューニングrf_modelRandomForestClassifier(random_state=0)ランダムフォレストで今回チューニングするパラメータmax_depth :決定木の深さの最大値n_esti...
機械学習

学習と予測 機械学習

y_target=fnData['default.payment.next.month']x_explanatory=fnDatax_explanatory=x_explanatory.drop('default.payment.next....
機械学習

機械学習実践 特徴量エンジニアリング

仮説や前処理した結果から得られた知見データサイエンスの知識に基づく知見ドメイン知識に基づく知見などを用いて、新たな説明変数を構築することです。説明変数が増えることにより、機械学習のモデルとしては精度向上に貢献する強力なツールとなりえますが、...