The Python Oracle

Calculating percentage of number with Tensorflow

Become part of the top 3% of the developers by applying to Toptal https://topt.al/25cXVn

--

Music by Eric Matyas
https://www.soundimage.org
Track title: Techno Bleepage Open

--

Chapters
00:00 Question
00:54 Accepted answer (Score 2)
01:24 Answer 2 (Score 6)
02:16 Thank you

--

Full question
https://stackoverflow.com/questions/5482...

Accepted answer links:
https://stackoverflow.com/a/39747526/494...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#python #tensorflow

#avk47



ANSWER 1

Score 6


In the print statements you get,

<tf.Tensor 'Mul_4:0' shape=() dtype=int32>

And other such statements. This is because Python is printing out the Tensor Objects and not their values. There are two methods to solve this .

  1. Enable eager execution.

    import tensorflow as tf
    tf.enable_eager_execution()
    

This will enable eager mode and you will get values of the tensors instead of the Tensor objects. This initializes the tensors immediately as they are declared ( and hence eager ).

  1. Using tf.Session() A tf.Session() objects runs and evaluates tensors in the graph. It runs on graph mode and not eager mode.

    with tf.Session as session:
        print( session.run( div ) )
    



ACCEPTED ANSWER

Score 2


Try this it will certainly help:

>>> import tensorflow as tf
>>> a = tf.placeholder(tf.float32)
>>> b = tf.placeholder(tf.float32)
>>> sess = tf.Session()
>>> percentage = tf.divide(tf.multiply(a,100),b)
>>> sess.run(tf.global_variables_initializer())
>>> sess.run(percentage,feed_dict={a:4,b:20})
20.0
>>> sess.run(percentage,feed_dict={a:50,b:50})
100.0
>>> sess.close()

You can refer to simple example:
https://stackoverflow.com/a/39747526/4948889
Hope this helps.