TensorFlow Interview Questions and Answers
Question: What is transfer learning, and how is it implemented in TensorFlow?Answer: Transfer learning is a technique where a pre-trained model is used as the starting point for a new task. In TensorFlow, this can be achieved using the tf.keras.applications module.Example: base_model = tf.keras.applications.MobileNetV2(weights='imagenet', include_top=False) |
Save For Revision
Bookmark this item, mark it difficult, or place it in a revision set.
Log in to save bookmarks, difficult questions, and revision sets.
Is it helpful? Yes No
Most helpful rated by users: