인공지능 관련

ReLu 함수 시각화

PGNV 2021. 4. 29. 15:20
import numpy as np
import math
import tensorflow as tf
import matplotlib.pyplot as plt


def ReLu(x):
  if x < 0:
    return 0
  else:
    return x

A = []
D = [x for x in range(-10, 11, 1)]
print(D)

for x in D:
  A.append(ReLu(x))

plt.plot(D, A, 'k--')
plt.show()

'인공지능 관련' 카테고리의 다른 글

활성화 함수(activation function) 종류와 정리  (0) 2021.05.06
Scikit-learn 용어 정리  (0) 2021.05.06
sigmoid함수 시각화  (0) 2021.04.29
파이썬 인공지능 관련 함수  (0) 2021.04.29
딥러닝 코드 분석  (0) 2021.04.28