TensorFlow 面试题与答案
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) |
保存以便复习
收藏此条目、标记为困难题,或将其加入复习集合。
这有帮助吗? 是 否
用户评价最有帮助的内容: