Layer in deep learning (1)

주제무·2022년 5월 12일
0

Layer

여러 층의 객체가 모델을 구성할 때, 각 층의 객체를 Layer라고 한다.

Linear Layer

linear transformation과 동일한 개념

import tensorflow as tf

batch_size = BATCH_SIZE # constant value
tensor = tf.zeros((batch_size, 4, 2))

0개의 댓글