소스 검색

just a letter missed in multiply...no big deal... (#131)

Raja Rahul Ray 8 년 전
부모
커밋
00e2927263
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      examples/1_Introduction/basic_operations.py

+ 1 - 1
examples/1_Introduction/basic_operations.py

@@ -30,7 +30,7 @@ b = tf.placeholder(tf.int16)
 
 
 # Define some operations
 # Define some operations
 add = tf.add(a, b)
 add = tf.add(a, b)
-mul = tf.muliply(a, b)
+mul = tf.multiply(a, b)
 
 
 # Launch the default graph.
 # Launch the default graph.
 with tf.Session() as sess:
 with tf.Session() as sess: