Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to compare Session and InteractiveSession in Tensorflow

2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/01 Report--

How to compare Session and InteractiveSession in Tensorflow? I believe many inexperienced people don't know what to do about it. Therefore, this paper summarizes the causes and solutions of the problem. Through this article, I hope you can solve this problem.

01

Session

Each Session maintains a copy of its own variable.

As follows:

W = tf.Variable (10)

Sess1 = tf.Session ()

Sess2 = tf.Session ()

Sess1.run (W.initializer)

Sess2.run (W.initializer)

Print sess1.run (W.assign_add (10)) # > > 20

Print sess2.run (W.assign_sub (2)) # > >?

? The equal sign 8 sess2 maintains W respectively, so an increase of 10 W in sess1 does not affect the W of sess2, so it is equal to 10-2-8.

02

Session vs InteractiveSession

Sometimes we see: InteractiveSession, not Session, what's the difference?

One major change is the use of an InteractiveSession, which allows us to run variables without needing to constantly refer to the session object (less typing!).

InteractiveSession ()

Sess = tf.InteractiveSession ()

A = tf.constant (5.0)

B = tf.constant (6. 0)

C = a * b

# We can just use 'c.eval ()' without specifying the context 'sess'

Print (c.eval ())

Sess.close ()

Session ()

Sess = tf.Session ()

A = tf.constant (5.0)

B = tf.constant (6. 0)

C = a * b

With tf.Session () as sess:

Sess.run (print (c.eval ()

After reading the above, have you mastered how to compare Session and InteractiveSession in Tensorflow? If you want to learn more skills or want to know more about it, you are welcome to follow the industry information channel, thank you for reading!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology