- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How can Tensorflow be used to build normalization layer using Python?
Tensorflow can be used to build normalization layer by first converting the class names to a Numpy array and then creating a normalization layer using the ‘Rescaling’ method, which is present in tf.keras.layers.experimental.preprocessing package.
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("It contains 5 classes") class_names = np.array(train_ds.class_names) print(class_names) print("A normalization layer is built") normalization_layer = tf.keras.layers.experimental.preprocessing.Rescaling(1./255) train_ds = train_ds.map(lambda x, y: (normalization_layer(x), y))
Code credit −https://www.tensorflow.org/tutorials/images/transfer_learning_with_hub
Output
It contains 5 classes ['daisy' 'dandelion' 'roses' 'sunflowers' 'tulips'] A normalization layer is built
Explanation
TFHub's conventions to model images requires float inputs in the range of [0, 1].
Rescaling layer can be used to achieve the same.
Buffered prefetching can be used so that data can be taken from disk without I/O blocking.
- Related Articles
- How can Tensorflow be used to build a normalization layer for the abalone dataset?
- After normalization, how can Tensorflow be used to train and build the model?
- How can Tensorflow be used to build a one dimensional convolutional network using Python?
- How can Tensorflow be used to return constructor arguments of layer instance using Python?
- How can Tensorflow be used to build vocabulary from tokenized words for Illiad dataset using Python?
- How can Tensorflow be used to find the state of preprocessing layer in dataset using Python?
- How can Tensorflow be used to compose layers using Python?
- How can TensorFlow be used to build the model for Fashion MNIST dataset in Python?
- How can Tensorflow and Python be used to build ragged tensor from list of words?
- How can Tensorflow be used to get the variables in a layer?
- How can Tensorflow be used to add two matrices using Python?
- How can Tensorflow be used to multiply two matrices using Python?
- How can Tensorflow be used to visualize training results using Python?
- How can Tensorflow be used to instantiate an estimator using Python?
- How can Tensorflow be used to decode the predictions using Python?
