LoginSignup
0
0

More than 3 years have passed since last update.

Windows10でTensorFlow,Keras,MNISTメモ

Last updated at Posted at 2019-07-31

動作環境

Windows10 Home
GTX1080ti

Anacondaのインストール

CUDA

cuDNN

Anacondapromptを起動

conda create -n [仮想環境名] python=3.7 jupyter
activate [仮想環境名]

tensorflowをインストール

pip install tensorflow-gpu

バージョン確認
import tensorflow as tf
tf.__version__
'1.14.0'

kerasをインストール

pip install keras

バージョン確認
import keras
Using TensorFlow backend.
keras.__version__
'2.2.4'

MNISTで動作確認

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