pytorchHair
  • Pytorch Hair Segmentation
  • Introduction
    • Semantic Segmentation 이란?
    • Figaro1k Dataset
  • 모델
    • PSPNet
    • DeepLab V3+
    • MobileNet
  • Utils
    • Ignite Utils
    • Visdom
Powered by GitBook
On this page

Was this helpful?

  1. 모델

MobileNet

PreviousDeepLab V3+NextIgnite Utils

Last updated 6 years ago

Was this helpful?

MobileNet

은 적은 파라미터로 효율적인 모델을 만들기 위해 노력한 논문입니다. mobilenet은 [v1]()과 [v2]()가 있습니다.

V1

mobilenet v1은 Convolutional layer를 Depthwise Separable Convolution과 1x1 conv으로 대체해서 vgg 모델 전체 weight 수를 줄였습니다. 자세한 것은 Deeplab 파트에서...

V2

mobilenet v2에서는 v1을 조금 변경합니다.

  1. 레이어 간에 linear bottleneck을 추가하고

  2. bottlenet 간에 shortcut ( skip-connect )를 추가했다는 점입니다.

mobilenet
https://arxiv.org/abs/1704.04861
https://arxiv.org/abs/1801.04381
from https://arxiv.org/abs/1704.04861
from https://ai.googleblog.com/2018/04/mobilenetv2-next-generation-of-on.html