- 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 understand the learning curve?
Tensorflow and the pre-trained model can be used to understand the learning curve by visualizing the operations that are performed on input dataset. The training accuracy, and validation accuracy are plotted with the help of the ‘matplotlib’ library. The training loss and validation loss are also visualized.
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.
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
print("Loss and accuracy are being determined") acc = history.history['accuracy'] val_acc = history.history['val_accuracy'] loss = history.history['loss'] val_loss = history.history['val_loss'] print("The data is being visualized") plt.figure(figsize=(8, 8)) plt.subplot(2, 1, 1) plt.plot(acc, label='Training Accuracy') plt.plot(val_acc, label='Validation Accuracy') plt.legend(loc='lower right') plt.ylabel('Accuracy') plt.ylim([min(plt.ylim()),1]) plt.title('Training and Validation Accuracy') plt.subplot(2, 1, 2) plt.plot(loss, label='Training Loss') plt.plot(val_loss, label='Validation Loss') plt.legend(loc='upper right') plt.ylabel('Cross Entropy') plt.ylim([0,1.0]) plt.title('Training and Validation Loss') plt.xlabel('epoch') plt.show()
Code credit −https://www.tensorflow.org/tutorials/images/transfer_learning
Output
Explanation
The learning curves of the training and validation accuracy/loss is visualized.
This is done using MobileNet V2 base model as a fixed feature extractor.
- Related Articles
- 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 compile the model using Python?
- 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 to continue training the model 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 Tensorflow and pre-trained model be used to configure the dataset for performance?
- How can Tensorflow and pre-trained model be used to visualize the data using Python?
- How can Tensorflow and pre-trained model after recompiling be used to visualize the data?
- How can Tensorflow and pre-trained model be used to chain data augmentation, rescaling and base model?
- 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 convert images from one dimension to another?
- How can Tensorflow be used with a pre-trained network, i.e. transfer learning to load the data?
