TensorFlow вопросы и ответы для интервью
Question: Explain the purpose of the tf.summary module in TensorFlow.Answer: The tf.summary module is used for creating summaries of training metrics and visualizations. It is commonly used with TensorFlow's TensorBoard for monitoring and debugging models.Example: summary_writer = tf.summary.create_file_writer(logdir) with summary_writer.as_default(): tf.summary.scalar('loss', loss, step=epoch) |
Сохранить для повторения
Добавьте этот элемент в закладки, отметьте как сложный или поместите в набор для повторения.
Войдите, чтобы сохранять закладки, сложные вопросы и наборы для повторения.
Это полезно? Да Нет
Самое полезное по оценкам пользователей: