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.

DeepLearning_学習ノート_000

Last updated at Posted at 2020-01-15

Google cloudの無料部分cloud shellDeepLearningを勉強はじめました。

  • cloud shell起動後

    • 上の白色部分はファイル一覧やブラウザーの部分です。
    • 下の黒色の部分はシェールのコマンドウインドウズです。
      cloud shell
  • DeepLearning tool のインストール

    • 下記のサイトd2l.aiの指示通りインストール可能ですが、一部のコマンドは変更必要である
      • Miniconda からLinux用のインストールファイルをダウンロードする
      • 初期化処理からJupyter notebook起動までの一連の処理を行う
install_01.sh
# minicondaをインストール
sh Miniconda3-latest-Linux-x86_64.sh -b

# 初期化処理
~/miniconda3/bin/conda init

# 環境配置
conda create --name d2l -y

# 学習資料をダウンロード&解凍
mkdir d2l-en && cd d2l-en
curl https://d2l.ai/d2l-en.zip -o d2l-en.zip
unzip d2l-en.zip && rm d2l-en.zip

# 環境起動
conda activate d2l
conda install python=3.7 pip -y

# mxnet & dl2lをインストール
pip install mxnet==1.6.0b20191122
pip install d2l

# Jupyter notebook を起動する
# ローカルのみ
jupyter notebook

# cloud 環境の起動方法
jupyter notebook --port 8000 --ip=0.0.0.0 --allow-root
  • 起動後の画面
    jupyter notebook
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?