Explorar o código

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

Raja Rahul Ray %!s(int64=8) %!d(string=hai) anos
pai
achega
00e2927263
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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
 add = tf.add(a, b)
-mul = tf.muliply(a, b)
+mul = tf.multiply(a, b)
 
 # Launch the default graph.
 with tf.Session() as sess: