TensorFlow вопросы и ответы для интервью
Question: What is the purpose of the tf.distribute.Strategy in TensorFlow?Answer: tf.distribute.Strategy is used for distributed training in TensorFlow. It allows you to efficiently train models across multiple GPUs or devices, improving training speed and scalability.Example: strategy = tf.distribute.MirroredStrategy() with strategy.scope(): model = tf.keras.Sequential([...]) |
Сохранить для повторения
Добавьте этот элемент в закладки, отметьте как сложный или поместите в набор для повторения.
Войдите, чтобы сохранять закладки, сложные вопросы и наборы для повторения.
Это полезно? Да Нет
Самое полезное по оценкам пользователей: