Skip to content

Latest commit

 

History

History
52 lines (29 loc) · 986 Bytes

2016resnet-inception-v4.md

File metadata and controls

52 lines (29 loc) · 986 Bytes
논문명
저자(소속) ()
학회/년도 IROS 2015, 논문
키워드
데이터셋(센서)/모델
관련연구
참고
코드

“Identity Mappings in Deep Residual Networks", 2016

Inception-V1(2014) Inception-V2 = Inception-V1 + BN(batch normalization) Inception-V3(2015) = nception-V2 + onvolution factorization + label smoothing + Auxiliary classifier Inception-V4(2016) = Inception-ResNet

추후 다시 살펴 보기 : 라온피플 블로그Class49, Class50

Inception-V4

1. 개요

기존 ResNet에 pre-activation 개념 적용

2. 특징

2.1 Residual Network Module

$$ x_{l+1} = f(h(x_l) + F(x_l)) $$

  • f(x) : activation(ReLU) 함수
  • h(x) : identity 함수
  • F(x) : Residual 함수