erdoctor

コーディング学習

多層パーセプトロンの実装

classMLP_regresor():def_init_(self):重みの定義  self.w1=np.random.randn(2,50)*0.1  (平均0、分散1(標準偏差1)の乱数を生成(~個,中身の数))  self.w2=n...
コーディング学習

コーディング学習の要点3

ランダムな並び替えnp.random.permutation(10)番号を並び替えて、先頭から適当な数だけサンプリングする。array([7,2,6,0,5,4,9,1,3,8])reshapeについてx_test[0].reshape(2...
python code

コーディング演習2の要点

関数を試してみる。①入力②引数③出力 を試すときにはまとめておく。Relu関数defrelu(v):x=np.maximum(v,0)returnxnp.maximum()①np.maximum(1,0)1②x=np.array([0,1,...
機械学習

機械学習回帰編 考察

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....