반응형
파이참(Pycharm)에서 텐서플로우 예제 실행해보기
File > Settings ..
Project 선택 > Project Intepreter > TensorFlow가 있는지 확인!
없으면, + Install >
TensorFlow 검색 > Install Package
간단한 예제와 결과
import tensorflow as tf
# https://www.tensorflow.org/get_started/get_started
node1 = tf.constant(3.0, tf.float32)
node2 = tf.constant(4.0) # also tf.float32 implicitly print('result:', node1, node2)
/Library/Frameworks/Python.framework/Versions/3.6/bin/python3.6 /Users/aileen/PycharmProjects/test_project/TensorFlow/__init__.py result: Tensor("Const:0", shape=(), dtype=float32) Tensor("Const_1:0", shape=(), dtype=float32) Process finished with exit code 0
관련문서
- TensorFlow가 설치되지 않을 경우 ☞ http://aileen93.tistory.com/70
'◼︎ 개발 > 텐서플로우' 카테고리의 다른 글
[텐서플로우] 기본 예제1) (0) | 2017.03.23 |
---|---|
[텐서플로우] Open GL과 Open CL (0) | 2017.03.23 |
7. [Mac] 에서 텐서플로우(Tensorflow) GPU 설치하기 (0) | 2017.03.22 |
6. 텐서플로우 시작하기 (0) | 2017.03.19 |
5. 김성 머신러닝 git hub 소스 다운로드 받기 (0) | 2017.03.18 |
3. 파이참(Pycharm)으로 Hello world 찍기 (0) | 2017.03.17 |
1. Tensorflow 윈도우/맥에서 설치하기 (0) | 2017.03.17 |