How can Tensorflow be used to call the layer, and get the variables present in the layer?


Tensorflow can be used to call the layer, and get the variables present in the layer, by first defining the layer, and using ‘layer.kernel’, and ‘layer.bias’ to access these variables. The ‘tf.zeros’ is used, and the layer can be iterated over and called.

Read More: What is TensorFlow and how Keras work with TensorFlow to create Neural Networks?

A neural network that contains at least one layer is known as a convolutional layer. We can use the Convolutional Neural Network to build learning model. 

The intuition behind transfer learning for image classification is, if a model is trained on a large and general dataset, this model can be used to effectively serve as a generic model for the visual world. It would have learned the feature maps, which means the user won’t have to start from scratch by training a large model on a large dataset.

TensorFlow Hub is a repository that contains pre-trained TensorFlow models. TensorFlow can be used to fine-tune learning models.

We will understand how to use models from TensorFlow Hub with tf.keras, use an image classification model from TensorFlow Hub.  Once this is done, transfer learning can be performed to fine-tune a model for customized image classes. This is done by using a pretrained classifier model to take an image and predict what it is. This can be done without needing any training.  

We are using the Google Colaboratory to run the below code. Google Colab or Colaboratory helps run Python code over the browser and requires zero configuration and free access to GPUs (Graphical Processing Units). Colaboratory has been built on top of Jupyter Notebook.

Example

print("Layer is being called")
layer = MyDenseLayer(10)
_ = layer(tf.zeros([10, 5]))
print([var.name for var in layer.trainable_variables])

Code credit −https://www.tensorflow.org/tutorials/customization/custom_layers

Output

Layer is being called
['my_dense_layer/kernel:0']

Explanation

  • The layer is called.

  • The name of the layer, along with the variables associated with the layer are displayed on the console.

Updated on: 25-Feb-2021

56 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements