Question: Explain the concept of eager execution in TensorFlow.Answer: Eager execution is a mode in TensorFlow that allows operations to be executed immediately as they are called, rather than building a computational graph to execute later.Example: tf.compat.v1.enable_eager_execution() result = tf.add(3, 5).numpy() |
복습용 저장
이 항목을 북마크하거나, 어렵게 표시하거나, 복습 세트에 넣을 수 있습니다.
도움이 되었나요? 예 아니요
Most helpful rated by users: