"텐서플로우"의 두 판 사이의 차이

35번째 줄: 35번째 줄:
* https://www.facebook.com/groups/TensorFlowKR/ : facebook 텐서플로우 코리아 그룹
* https://www.facebook.com/groups/TensorFlowKR/ : facebook 텐서플로우 코리아 그룹
* https://github.com/tensorflow/tensorflow
* https://github.com/tensorflow/tensorflow
* https://www.youtube.com/watch?v=qxUD7fOseBQ&list=PLRx0vPvlEmdAbnmLH9yh03cw9UQU_o7PO


[[분류: 인공지능]]
[[분류: 인공지능]]
[[분류: TensorFlow]]
[[분류: TensorFlow]]

2020년 2월 27일 (목) 15:06 판

1 개요

TensorFlow
텐서플로우, 텐서플로
  • 머신러닝, 딥러닝을 위한 오픈소스 라이브러리
  • 데이터 플로우 그래프를 이용한 수치 연산 라이브러리
  • CPU 또는 GPU를 사용하여 연산을 구동할 수 있음
  • 개발사: 구글 브레인
  • 작성언어: Python, C++
  • 2001년, 구글 내 연구와 제품개발을 위한 목적으로 제작
  • 2015년, 아파치 2.0 오픈소스 라이선스로 공개됨

 

import tensorflow as tf
hello = tf.constant('Hello, TensorFlow!')
sess = tf.Session()
print(sess.run(hello))
# Hello, TensorFlow!

2 같이 보기

3 참고

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}