3
3

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実施ツール DIGITSのインストール手順  実施メモ&翻訳

Last updated at Posted at 2016-05-29

Ubuntu 14.04へのNvidia DIGITSインストール手順
githubの手順を実行した結果と翻訳
NvidiaのGPUを使っていてCUDAドライバーが入れば簡単です。

NVIDIA driver version 346 以降の
ダウンロードを下記のページから実施します。
使用しているGPUに合わせてドライバーをダウンロードして下さい。

下記コマンド実行しリポジトリの登録

CUDA_REPO_PKG=cuda-repo-ubuntu1404_7.5-18_amd64.deb &&
    wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1404/x86_64/$CUDA_REPO_PKG &&
    sudo dpkg -i $CUDA_REPO_PKG
ML_REPO_PKG=nvidia-machine-learning-repo_4.0-2_amd64.deb &&
    wget http://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1404/x86_64/$ML_REPO_PKG &&
    sudo dpkg -i $ML_REPO_PKG
CUDA repository

DIGITSインストール

$ sudo apt-get update
$ sudo apt-get install digits

ローカルホストで起動しているので
アクセスすればDIGITSの起動がウェブで確認出来ます
http://localhost/.

port 80 が既に使われている場合は
再設定する

% sudo dpkg-reconfigure digits
% cd /usr/share/digits

## コンフィグの再設定
% sudo python -m digits.config.edit -v

## サーバー再起動
% sudo stop nvidia-digits-server
% sudo start nvidia-digits-server

driverインストール

新しいドライバー導入時はDIGITS実行中に入れると
CUDA関連エラーが発生するのでサーバーを停止した上で
ドライバーインストールしDIGITSを再起動する

参照ページ
github:
https://github.com/NVIDIA/DIGITS/blob/master/docs/UbuntuInstall.md

3
3
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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?