Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- GCN
- Vanilla RNN
- Manager
- Bottleneck Layer
- RNN
- cnn
- Peephole Connection
- Optimizer
- Skip Connection
- version
- classification
- sigmoid
- python
- virtualenv
- Gated Skip Connection
- ResNet
- DL
- Residual Connection
- Linear
- Inception V1
- Skip Connectioin
- DCGAN
- iTerm2
- GoogLeNet
- jupyter
- AI
- Inception Module
- Generative
- Regression
- vim-plug
Archives
- Today
- Total
목록CrossEntropy (1)
IT Repository
(4) Classification - Binary
Classification¶ Regression과 마찬가지로 데이터 x를 넣었을 때, y가 출력으로 나오는 문제입니다. 다만 출력으로 나오게 되는 y가 Discrete한 space를 가지고 있다는게 차이점입니다. 개와 고양이의 분류, 점수에 따른 학점의 분류, 소비 패턴에 따른 성별예측과 같은 것이 Classification의 예 입니다. Linear Regression의 Hypothesis를 사용한다면?¶ In [199]: import numpy as np import matplotlib.pyplot as plt hour = np.arange(1, 11).astype(int) hour = np.concatenate([hour, np.array([20])]) label = np.zeros(11).asty..
Introduction
2020. 1. 6. 15:42