TF-Eager-Execution-Guide-KR icon indicating copy to clipboard operation
TF-Eager-Execution-Guide-KR copied to clipboard

Programmer Guide (for Korean): TensorFlow Eager Execution

Results 1 TF-Eager-Execution-Guide-KR issues
Sort by recently updated
recently updated
newest added

eager execution과 직접 상관있는 부분은 아닙니다만, model = tf.keras.Sequential([ tf.keras.layers.Dense(10, input_shape=(784,)), # 입력 shape을 반드시 선언해줘야 한다. tf.keras.layers.Dense(10) ]) 부분에서 tf.keras에서는 input_shape이 필수 요소는 아닌 것으로 알고 있습니다. 다만 model.summary()...