0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

AI-900:Microsoft Azure AI Fundamentals試験に向けて part2

Posted at

#MSLearnの続き(Azure Machine Learning デザイナーを使用して回帰モデルを作成する)

  • MSLearnのLINKはこちら

  • データおよびパイプライン(モデル)の作成

    • 説明が少し「?」だったけど、「+」を押せばすぐ作成されたので、次に進んでいった(下図はパイプライン送信中のもの)
      image.png
    • 調子に乗って(?)英語でやって「行削除」の所を「Remove entire column」にしてたら、Normalize Dataで「そんな列ねぇ」ってエラーが出て怒られた。。。「行削除」は「Remove entire row」ですね。。(下図は編集後に再送信して終わったもの)
      image.png
    • 引き続きなんとか英語で頑張って次のトレーニングパイプラインを作成、こちらは一発で完了
      image.png
  • モデルの評価

  • 推論パイプラインの作成

    • 入力データから「価格」を排除し、モデルを利用して価格を推定
    • pythonも織り交ぜるようになり、3つの入力データに対する予想価格が表示された
      image.png
  • サービスとしてのテスト

    • エンドポイントと主キーが作成されるので、サンプルソースでテスト(↓は一部)
    • うまくいけばこんな形で予測値が表示されて、これにてトレーニング終了(小テストもあるよ)
      image.png
endpoint = 'YOUR_ENDPOINT' #Replace with your endpoint
key = 'YOUR_KEY' #Replace with your key

import urllib.request
import json
import os

# Prepare the input data
data = {
    "Inputs": {
        "WebServiceInput0":
        [
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?