ビデオ・レッスン-機械学習レシピ(4/10)ー ノート


機械学習がどんなものかを学ぶビデオ・レッスンです。

機械学習が何をしようとしているのかをコーディングを通して、教えてくれます。

GoogleのJosh Gordonさんのレッスンでシリーズものになっています。

その4回目


Scikit-learnのパイプラインを書こう – 機械学習レシピ4


以下はムービーの説明を補足するヘルプです


Dataset

Email Label
Click here to claim your prize! Spam
What’s new? Not spam
Hang out later? Not spam
You have won $1000,000 Spam

 

Train

Email Label
Click here to claim your prize! Spam
What’s new? Not spam
Hang out later? Not spam

 

Test

Email Label
Pick up groceries Not spam
Free free free ! Spam
Android 5.0 questions Not spam

 

ムービーと異なり、ubuntu 16.04 LTS + Python3の環境で実行する場合

ムービーのコードの変更点

×  from sklearn.cross_validation import train_test_split

○  from sklearn.model_selection import train_test_split

 

【test4.py】

 

 

$python3 test4.py

結果

 

【test5.py】

 

$python3 test5.py

結果

 

【test6.py】

 

$python3 test6.py

結果

 

 


TensorFlow/Playground


コードサンプル


ビデオ・レッスン-機械学習レシピ 1 ~ 10 Links


 

Be the first to comment

Leave a Reply

Your email address will not be published.


*