tf.keras.activations.linear

tf.keras.activations.linear는 Linear Activation 함수입니다.



예제

import tensorflow as tf
import numpy as np
import matplotlib.pyplot as plt

plt.rcParams['figure.figsize'] = (6, 3)

x = np.linspace(-10, 10, 11)
y = tf.keras.activations.linear(x)

print(x)
print(y)
print(type(x), type(y))

plt.plot(x, y, 'o-')
plt.xlabel('X')
plt.ylabel('Y')
plt.tight_layout()
plt.show()
[-10.  -8.  -6.  -4.  -2.   0.   2.   4.   6.   8.  10.]
[-10.  -8.  -6.  -4.  -2.   0.   2.   4.   6.   8.  10.]
<class 'numpy.ndarray'> <class 'numpy.ndarray'>

tf.keras.activations.linear는 입력값과 동일한 출력값을 반환합니다.

출력의 자료형도 입력과 동일하게 numpy.ndarray임을 알 수 있습니다.


tf.keras.activations.linear


이전글/다음글