모두를 위한 머신러닝 - ML lab 01 - TensorFlow의 설치및 기본적인 operations

모두를 위한 머신러닝 - ML lab 01 - TensorFlow의 설치및 기본적인 operations (new)

텐서플로 설치

1
2
pip install --upgrade tensorflow
pip install --upgrade tensorflow-gpu

TensorFlowKR

Check installation and version

1
2
3
$ python3
>>> import tensorflow as tf
>>> tf.__version__
공유하기