본문 바로가기

논문

(21)
[논문 공부] LSTM(Long Short-Term Memory)(feat. RNN) LSTM - Long Short-Term Memory 원문 : http://www.bioinf.jku.at/publications/older/2604.pdf 개요 이번 포스팅에서는 Long Short-Term Memory(LSTM) 논문을 공부합니다. 원문보다는 Chrisopher Olah님이 쓰신 글을 토대로 공부했습니다. https://colah.github.io/posts/2015-08-Understanding-LSTMs/
[논문 공부] Sequence to Sequence Learning with Neural Networks Sequence to Sequence Learning with Neural Networks 원문 : https://arxiv.org/abs/1409.3215 Sequence to Sequence Learning with Neural Networks Deep Neural Networks (DNNs) are powerful models that have achieved excellent performance on difficult learning tasks. Although DNNs work well whenever large labeled training sets are available, they cannot be used to map sequences to sequences. In this pap ar..
[모델공부]U-Net : Image segmentations U-Net: Convolutional Networks for Biomedical Image Segmentation https://arxiv.org/pdf/1505.04597.pdf 개요 이번 포스팅에서는 U-Net을 공부합니다. 논문 리뷰의 수준은 U-Net Network를 구현할 수 있을 정도의 깊이로만 공부합니다. 나는 사용했다 번역을 위해서 구글 번역기 2022-01-10 수정중 Abstract In this paper, we present a network and training strategy that relies on the strong use of data augmentation to use the available annotated samples more efficiently. 본 논문에서..
[모델구현]Unet 네트워크 구현하기(with Pytorch) (Pytorch) 논문을 보고 Unet 네트워크를 직접 구현합니다. https://arxiv.org/pdf/1505.04597.pdf Reference hanyoseob님의 "머신러닝/딥러닝 강의 - 004 UNet 네트워크 구현하기" 강의를 참고했습니다. hanyoseob님 유튜브 강의 Datasets "ISBI 2012 EM segmentation Challenge"에서 사용된 데이터셋 실습 환경 colab 후기 네트워크 구조만 놓고 본다면 encoder-decoder 모델의 기초인 것 같아서 따라 하고 이해하는 데는 큰 어려움이 없었다. 하지만 파이 토치를 처음 사용해서 익숙하지 않고 서브 클래싱으로 모델 구현하는 건 많은 연습을 해야 할 거 같다. Network Code #Unet 구현 class..
[논문 공부]SSD : Singl1e Shot Multibox Detector SSD : Single Shot Multibox Detector(1) 원문 : https://arxiv.org/pdf/1512.02325.pdf 개요 이번 포스팅에서는 SSD : Single Shot Multibox Detector 논문을 공부합니다. 나는 사용했다 번역을 위해서 구글 번역기 12월 29일 수정중 22 Happy New Year 1월 01일 수정중 1월 15일 수정중 Abstract SSD discretizes the output space of bounding boxes into a set of default boxes over different aspect ratios and scales per feature map location. SSD는 피쳐 맵 위치당 서로 다른 종횡비 및 스케..