Learn Before
Example
Parameter Access in TensorFlow Sequential Models
In TensorFlow, a layer within a Sequential model can be accessed by indexing the layers list, and its parameters are retrieved using the weights attribute. For example, net.layers[2].weights returns a list of the parameter variables for the third layer. This list typically includes the tf.Variable objects corresponding to the layer's kernel (weights) and bias.
0
1
Updated 2026-05-07
Tags
D2L
Dive into Deep Learning @ D2L