Skip to Content
Mastering Python for Finance - Second Edition
book

Mastering Python for Finance - Second Edition

by James Ma Weiming
April 2019
Intermediate to advanced
426 pages
11h 13m
English
Packt Publishing
Content preview from Mastering Python for Finance - Second Edition

Phase 2 – training our model

The following steps describe the process of training our model:

  1. Create a TensorFlow Session object to encapsulate the environment in which a neural network model operates:
In [ ]:    session = tf.InteractiveSession()

Here, we are specifying a session for use in an interactive context, in this case a Jupyter notebook. A regular tf.Session is non-interactive and requires an explicit Session object to be passed using the with keyword when running operations. InteractiveSession removes this need and is more convenient as it reuses the session variable.

  1. TensorFlow requires that all global variables are to be initialized before training. Do this using the session.run command:
In [ ]: session.run(tf.global_variables_initializer()) ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Python for Finance - Second Edition

Python for Finance - Second Edition

Yuxing Yan
Python for Finance

Python for Finance

Yves Hilpisch

Publisher Resources

ISBN: 9781789346466Supplemental Content