[정수리] TensorFlow 학습 노트의 4가지 - 원본 분석의 기본 조작
1923 단어 원본 코드메모입문배우다tensorflow
https://github.com/aymericdamien/TensorFlow-Examples/blob/master/examples/1%20-%20Introduction/basic_operations.py
인터넷의 입문 예에 따르면 코드와 TensorFlow를 조금 익힌다.이 기본적인 예에 대해 주석을 하나 만들어 잊어버린 나머지 같은 입문 초보자에게 공유한다.
import tensorflow as tf
a = tf.constant(2)
b = tf.constant(3)
# a,b tensorflow , 。
with tf.Session() as sess:
print "a=2, b=3"
print "Addition with constants: %i" % sess.run(a+b)
print "Multiplication with constants: %i" % sess.run(a*b)
# Session run() a+b a*b 。 with tf.Session() as sess , sess.run() , sess.close() 。
a = tf.placeholder(tf.int16)
b = tf.placeholder(tf.int16)
# a,b tf.int16 , 。
add = tf.add(a, b)
mul = tf.mul(a, b)
# a,b , ,add mul。
with tf.Session() as sess:
print "Addition with variables: %i" % sess.run(add, feed_dict={a: 2, b: 3})
print "Multiplication with variables: %i" % sess.run(mul, feed_dict={a: 2, b: 3})
# a,b , add mul 。
matrix1 = tf.constant([[3., 3.]])
matrix2 = tf.constant([[2.],[2.]])
product = tf.matmul(matrix1, matrix2)
# , matmul product。
with tf.Session() as sess:
result = sess.run(product)
print result
# product , result 。
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Asp와 XML로 상호작용하는 실례 원본XML은 표준 확장 언어로 미래 웹 프로그래밍의 표준이다. asp는 현재 널리 전해지는 웹 프로그래밍 언어 중의 하나이다. 그들 두 사람이 연합하여 역할을 발휘할 수 있을까?두부는 여기서 여러분에게 아주 간단한 As...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.