- 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 and pre-trained model be used to configure the dataset for performance?
Tensorflow and pre-trained model can be used to configure the dataset for performance using the ‘AUTOTUNE’ attribute that is present in the ‘tf.Data’ module. Buffered prefetching is used to ensure that the data can be taken from disk without having I/O become blocking. Dataset.prefetch() will overlap the data preprocessing and model execution while training.
Read More: What is TensorFlow and how Keras work with TensorFlow to create Neural Networks?
We will understand how to classify images of cats and dogs with the help of transfer learning from a pre-trained network.
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.
Read More: How can a customized model be pre-trained?
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
AUTOTUNE = tf.data.AUTOTUNE print("Configuring dataset for performance") train_dataset = train_dataset.prefetch(buffer_size=AUTOTUNE) validation_dataset = validation_dataset.prefetch(buffer_size=AUTOTUNE) test_dataset = test_dataset.prefetch(buffer_size=AUTOTUNE)
Code credit −https://www.tensorflow.org/tutorials/images/transfer_learning
Output
Configuring dataset for performance
Explanation
- Buffered prefetching can be used to load images from the disk.
- This will avoid I/O from blocking.
- Related Articles
- How can Tensorflow be used to configure the dataset for performance?
- How can Tensorflow be used to configure the flower dataset for performance?
- How can Tensorflow be used with pre-trained model to build the training and validation dataset?
- 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 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 compile the model using Python?
- How can TensorFlow be used to configure the IMDB dataset to give good performance and create a model?
- How can Tensorflow be used with pre-trained model to determine the number of batches in the dataset?
- 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 to understand the learning curve?
- How can Tensorflow and pre-trained model be used to continue training the model using Python?
- How can Tensorflow used with the pre-trained model to compile the model?
- How can Tensorflow configure the flower dataset for performance?
- How can Tensorflow be used with pre-trained model to rescale pixel values?
