Upgrade to Pro — share decks privately, control downloads, hide ads and more …

機械学習&AI入門 / ML and AI Introduction

機械学習&AI入門 / ML and AI Introduction

2019/06/05(水) 10:00 〜 12:00 @ Developer Dojo Shibuya,
2019/06/26(水) 18:45〜 20:30 @ Developer Dojo Shibuya,
2019/07/31(水) 16:15-16:45@Developer Dojo
で開催した「Watson Studio 機械学習入門」の「機械学習&AI入門」の資料です。

2019/07/31: 7/31用の情報に変更(本体部分に変更なし)
2019/06/26: ちょっと更新しました。

Kyoko Nishito

June 05, 2019
Tweet

More Decks by Kyoko Nishito

Other Decks in Technology

Transcript

  1. 機械学習&AI⼊⾨ DOC ID / Month XX, 2018 / © 2018

    IBM Corporation ⽇本アイ・ビー・エム(株) Developer Advocate ⻄⼾ 京⼦
  2. ちなみに Part2, Part3はハンズオンの内容です︕ 7 Introduction to Machine Learning and Artificial

    Intelligence – Watson Studio Tutorial, Part 2 https://developer.ibm.com/videos/introduction-to-machine- learning-and-artificial-intelligence-watson-studio-tutorial-part-2/ Introduction to Machine Learning and Artificial Intelligence – Watson Studio Tutorial, Part 3 https://developer.ibm.com/videos/introduction-to-machine- learning-and-artificial-intelligence-watson-studio-tutorial-part-3/
  3. 機械学習 Machine Learning 13 13 課題: ⼼不全がおこるかどうかを判断する *BMI: 体重kg÷(⾝⻑m*⾝⻑m) 実⾏:

    モデルは⼼不全の有無 を予測 学習: 学習し結果予測モデル作成のために データセットを利⽤ ⼼拍数 BMI 年齢 性別 結果 93 25 49 F False 108 24 32 M False 80 31 60 M True 93 27 58 F True ⼊⼒: ⼼拍数, BMI*, 年齢, 性別
  4. 今までのやり⽅ -- Traditional 14 データ ルール if BPM-BMI > 60:

    result = True else: result = False 結果 アルゴリズム
  5. 機械学習 Machine Learning 16 16 課題: ⼼不全がおこるかどうかを判断する *BMI: 体重kg÷(⾝⻑m*⾝⻑m) 実⾏:

    モデルは⼼不全の有無 を予測 学習: 学習し結果予測モデル作成のために データセットを利⽤ ⼼拍数 BMI 年齢 性別 結果 93 25 49 F False 108 24 32 M False 80 31 60 M True 93 27 58 F True ⼊⼒: ⼼拍数, BMI*, 年齢, 性別
  6. 教師あり学習 機械学習 教師なし学習 強化学習 回帰 Regression 分類 Classification 決定木 Decision

    Trees サポートベクトルマシン Support Vector Machines ロジスティック回帰 Logistic Regression ランダムフォレスト Random Forests ニューラル ネットワーク 連続した数値を推定
  7. 機械学習 Machine Learning 20 20 課題: ⼼不全がおこるかどうかを判断する データ ポイント 実⾏:

    モデルは⼼不全の有無 を予測 学習: 学習し結果予測モデル作成のために データセットを利⽤ ⼼拍数 BMI 年齢 性別 結果 93 25 49 F False 108 24 32 M False 80 31 60 M True 93 27 58 F True ⼊⼒: ⼼拍数, BMI*, 年齢, 性別 *BMI: 体重kg÷(⾝⻑m*⾝⻑m) ⽬的変数 Feature 特徴量 説明変数
  8. Definitions 22 ⼼拍数 BMI 年齢 性別 結果 93 25 49

    F False 108 24 32 M False 80 31 60 M True 93 27 58 F True Feature 特徴量 説明変数 モデル Model プログラマーが明⽰的にそれらのパターンをプログラムする必要なしにデータ 中のパターンを⾒つけるのに使⽤されるアルゴリズム 特徴量 Feature (説明変数ともいいます) 個々の測定可能な特性または観察されている現象の特性のデータ ⽬的変数 結果や答えのデータ ⽬的変数
  9. 24