일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 코딩 테스트
- Unsupervised learning
- meta-learning
- Artificial Intelligence
- Score-CAM
- 인공지능
- SmoothGrad
- keras
- Class activation map
- 메타러닝
- 머신러닝
- 설명가능한 인공지능
- Machine Learning
- Interpretability
- 기계학습
- 백준
- 딥러닝
- grad-cam
- Deep learning
- Cam
- Explainable AI
- 설명가능한
- python
- 시계열 분석
- 코딩테스트
- coding test
- cs231n
- GAN
- AI
- xai
Archives
- Today
- Total
목록ReLu (1)
iMTE
주요 기계학습, 딥러닝 activation function
activation functions In [1]: import matplotlib.pyplot as plt import numpy as np Step function¶ In [2]: def step(x): return 1*(x>0) In [3]: inputs = np.arange(-5,5,0.01) outputs = step(inputs) plt.figure(figsize=(8,5)) plt.plot(inputs,outputs,label='Step function') plt.hlines(0,-5,5) plt.vlines(0,0,1) plt.xlabel('input',fontsize=24) plt.ylabel('output',fontsize=24) plt.grid(alpha=0.3) plt.title("..
Python/유용한 코드들
2021. 1. 26. 14:42