January 2018
Intermediate to advanced
310 pages
7h 48m
English
Now you have defined the model and training operation. The next step is to start training the model with the data. During training, the gradients are calculated and the weights are updated. The variables have not yet been initialized. Next, start the session and initialize the variables using a global variable initializer:
session = tf.Session()session.run(tf.global_variables_initializer())
Read now
Unlock full access