0
1

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

windows10でtensorflow

Last updated at Posted at 2021-02-07

こいついっつもインストールしてんな・・・

#前提条件
windows10 64bit
GPU版
GPUはgtx1070を使用

CUDAとcuDNNをインストール

以下サイトが詳しかったです。
https://www.kkaneko.jp/tools/win/cuda.html

pythonをインストール。必ず3.8。

3.9入れても動きません。
「python」で検索してwindows版をインストール
「Add Python3.x to PATH」にはチェックを入れる

tensorflow-gpuは2.4.1

最新版。

pip install tensorflow-gpu

keras 2.4.3

最新版。

pip install keras

anacondaとかminicondaとかjupiterとか

仮想環境のためのアプリケーション。あると便利だが覚えるのが大変なので、とりあえずは無くても大丈夫。
昔はライブラリごとの依存関係が複雑で、色々なライブラリを動かすための環境を個別に作らないと大変だったが、
最近は大分解消された。
仮想環境作り自体も結構手間なので、後回しでもよいと思う。

バージョンの確認

コマンドラインで…
py -m pip show tensorflow-gpu -V

以下、意味

  • py pythonをインストールすると、py.exeというランチャーも同時にインストールされる。pythonにはpathが通ってないのでpyでok
  • -m [module-name]pip使う時はこのオプションが必要
  • pip インストーラー
  • show 中身教えて
  • tensorflow-gpu 「-gpu」をつけないとnot foundと言われる
  • -V バージョン

カレントフォルダの確認

import os
os.getcwd()
>'C:\\Users\\81909'

※ユーザー名は「test_man」です

なぜかwindowsではユーザー名が表示されず仮想環境っぽくなるようですが、
カレントフォルダは
C:\Users\test_man
になっていてそのまま作業できます。フルパスで処理する際は気をつける必要があるかもしれません

tensorflow_hub

あったらいいなが、モデル集みたいなもん。
py -m pip install tensorflow_hub

gitのインストール

多分必要になるのでついでに
「git windows」で検索してインストール

グラフが表示されない

plt~のコード付近でグラフが表示されない時は、
plt.show()
を入れる
pltはmatplotlibの一部

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?