- 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 extract features with the help of pre-trained model using Python?
Tensorflow can be used to extract features with the help of pre-trained model using a feature extractor model, which is previously defined, and is used in ‘KerasLayer’ method.
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("Extracting features") feature_extractor_model = "https://tfhub.dev/google/tf2-preview/mobilenet_v2/feature_vector/4" feature_extractor_layer = hub.KerasLayer( feature_extractor_model, input_shape=(224, 224, 3), trainable=False) feature_batch = feature_extractor_layer(image_batch) print(feature_batch.shape)
Code credit −https://www.tensorflow.org/tutorials/images/transfer_learning_with_hub
Output
Extracting features (32, 1280)
Explanation
- The features are extracted,
- The ‘feature_extractor_layer’ is used to get the featues of the dataset.
- The dimensions of the features are displayed on the console.
- Related Articles
- How can Tensorflow and pre-trained model be used to compile the model using Python?
- How can Tensorflow and pre-trained model be used to continue training the model using Python?
- How can Tensorflow and pre-trained model be used to create base model from pre-trained convnets?
- How can Tensorflow and pre-trained model be used to visualize the data using Python?
- How can Tensorflow used with the pre-trained model to compile the model?
- How can Tensorflow be used with pre-trained model to rescale pixel values?
- How can Keras be used with a pre-trained model using Python?
- How can Tensorflow and pre-trained model be used to convert features into single prediction per image?
- How can Tensorflow and pre-trained model be used for feature extraction?
- How can Tensorflow and pre-trained model be used for fine tuning?
- How can Tensorflow and pre-trained model be used to add classification head to the model?
- How can Tensorflow and pre-trained model be used for evaluation and prediction of data using Python?
- How can Tensorflow and pre-trained model be used to understand the learning curve?
- How can Tensorflow be used with pre-trained model to build the training and validation dataset?
- How can Tensorflow be used with pre-trained model to determine the number of batches in the dataset?
