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 5 years have passed since last update.

Azure の Data Science Virtual Machine で CNTK を試す

Last updated at Posted at 2017-06-01

発端


Azure に VM を立てよう


料金 (1)

  • MSDN サブスクリプションに付属している Azure のクレジットで支払いたい
  • Data Science Virtual Machine の代金の支払いにサブスクリプションは使えないよ みたいなことが書いてある
  • DSVM の代金は 0.0000 JPY/時間 とも書いてあるので、信じて 購入 を押す
  • なお Standard DS2 v2 仮想マシンは有料で、サブスクリプション クレジットで支払える

起動

  • 仮想マシンのデプロイは数分で完了
  • コマンドラインから jupyter notebook を起動
> jupyter notebook
  • ブラウザで localhost:9999
  • あるいは、デスクトップのショートカットを叩く

パスワード???

  • jupyter notebook にパスワードの入力を要求される
  • パスワードなんて設定した覚えがない...

パスワードを再設定

  • デスクトップのショートカット Jupyter Set Password & Start を実行
    • jupyter_notebook_config.py (後述) の末尾に新しいパスワードが追記される
  • jupyter notebook を起動して、ブラウザで開く
  • 新しいパスワードを入力してログイン

あるいは、パスワード無しに

  • C:\ProgramData\jupyterjupyter_notebook_config.py を編集
  • c.NotebookApp.password の行を削除かコメントアウト
  • jupyter notebook を起動すると、トークンが発行される
  • トークンをコピペしてログイン
  • あるいは、トークン付 URL をアドレスバーにコピペして入る

CNTK のインストール

  • 初期状態では CNTK が無いというエラー
  • CNTK はインストールが必要
  • ドキュメントに従ってインストールする
  • 今回は python = 2.7, Flavor = CPU-Only を pip install
  • CNTK インポート
import cntk
cntk.__version__
'2.0rc3'
  • サンプルを実行

GPU vs CPU

  • GPU 版をインストールしておけば、先に GPU を探し、無ければ CPU を使うので大丈夫とのこと
  • GPU は超速い :o

モデルの保存

  • 学習させたモデルは save で書き出せるとのこと
pred.save("filename")

【誤】料金 (2)

  • VM を停止しても料金がかかる
    • 停止しても 'Stopped (still incurring compute charges)' と表示される
  • 料金の発生を止めるには VM を削除するしかない (たぶん)
    • ストレージ アカウント
    • パブリック IP アドレス
    • ...
    • リソース グループ でまとめて消すのがよい

【正】料金 (2)

  • Azure ポータルから 停止 すると課金が止まる
    • 'Deallocating' と表示されている状態
  • OS をシャットダウンしただけでは課金は止まらない
    • 'Stopped (still incurring compute charges)' と表示されている状態
  • VMを停止してもかかる料金はある
    • ストレージ アカウント
    • パブリック IP アドレス

0
0
2

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?