RyotaUshio / ml

0 stars 0 forks source link

参考資料 #2

Open RyotaUshio opened 3 years ago

RyotaUshio commented 3 years ago

引数はSequenceであってほしいが、ユーザが必ずしもSequenceを渡してくれるかわからない、あるいは長さ1のSequenceはfloat / intなどとして渡せるようにしたいときの書き方

https://github.com/scikit-learn/scikit-learn/blob/8c6a045e46abe94e43a971d4f8042728addfd6a7/sklearn/neural_network/_multilayer_perceptron.py#L350-L354

RyotaUshio commented 3 years ago

教師あり学習の評価について https://note.nkmk.me/python-sklearn-confusion-matrix-score/

RyotaUshio commented 3 years ago

__repr__の実装でself.__class__.__name__を利用する https://github.com/matplotlib/matplotlib/blob/fe9c2c6a719814fb2018f6b1effc3c81487fc64c/lib/matplotlib/figure.py#L2043-L2048

RyotaUshio commented 3 years ago

SGDの早期終了について (より精密に言うと、sklearnではエポックごとに見ているらしい)

RyotaUshio commented 3 years ago

Dropoutの実装

RyotaUshio commented 3 years ago

混同行列の生成にこれが使えそう。 https://note.nkmk.me/python-pandas-pivot-table/

こっちだった。 https://note.nkmk.me/python-pandas-crosstab/