Answers for "tensorflow numpy"

3

tensorflow to numpy

import tensorflow as tf

a = tf.constant([[1, 2], [3, 4]])                 
b = tf.add(a, 1)

a.numpy()
# array([[1, 2],
#        [3, 4]], dtype=int32)

b.numpy()
# array([[2, 3],
#        [4, 5]], dtype=int32)

tf.multiply(a, b).numpy()
# array([[ 2,  6],
#        [12, 20]], dtype=int32)
Posted by: Guest on January-14-2021
0

turn numpy function into tensorflow

tf.numpy_function(    func, inp, Tout, name=None)
Posted by: Guest on August-12-2021

Code answers related to "tensorflow numpy"

Python Answers by Framework

Browse Popular Code Answers by Language