일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- object detection
- 엔트로피란
- 기계학습
- res
- 딥러닝 목적함수
- 2호선 따라걷기
- gsoc 후기
- referring expression segmentation
- 논문 리뷰
- gsoc midterm evaluations
- grefcoco
- gsoc 2025
- gres
- clip
- Object detection article
- res paper
- blip-2
- 대학원 일상
- vlm
- mobilenetv1
- 에지 검출
- clip adapter
- 1차 미분 마스크
- 이미지 필터링
- 딥러닝 엔트로피
- 객체 검출
- 원격 학습 안끊기게
- 논문 요약
- grefcoco dataset
- 2호선 완주
- Today
- Total
목록전체 글 (84)
My Vision, Computer Vision

Screen을 사용하는 이유보통 노트북으로 연구실 데스크톱에 원격 접속하여 학습을 돌리는데, 노트북이 꺼지면 학습도 종료됩니다. 하지만 Screen을 사용하면 노트북이 꺼져도 데스크톱에서 돌아가고 있는 학습은 종료되지 않습니다. 그럼 Screen의 간단한 사용법에 대해 알아보겠습니다.Screen 설치pip install screen 또는apt-get install screen 으로 screen을 설치해줍니다.명령어스크린 생성screen -S [스크린 이름] : [스크린 이름]에 해당하는 스크린을 새로 생성 후 접속screen -R [스크린 이름] : 같은 이름의 스크린이 있으면 해당 스크린으로 접속, 아니면 새로 생성 후 접속 현재 스크린 리스트 확인screen -ls 스크린 삭제screen -S [스크..

An Image is Worth 16x16 Words: Transformers for Image Recognition at ScaleWhile the Transformer architecture has become the de-facto standard for natural language processing tasks, its applications to computer vision remain limited. In vision, attention is either applied in conjunction with convolutional networks, or used to reparxiv.orgAbstractTransformer가 사실상 NLP 분야의 표준이 되었지만 Computer vision에 ..

퓨리에 변환파형은 일정한 주기를 가지고 있다.파형의 성질을 적절히 수량화하면 분류기가 두 신호를 분류하는데 쓸모 있는 특징이 될 수 있다. 파형의 선형 결합위 두 개의 그래프는 아래 두 개의 그래프(기저 함수)의 선형 결합으로 나타낸 것이다.$s_1(x) = 0.5g_1(x) + 1.5g_2(x)$$s_2(x) = 1.5g_1(x) + 0.5g_2(x)$이 계수들을 특징으로 삼을 수 있다.실제 상황에서는 계수를 미리 알 수 없다. 따라서 퓨리에 변환을 통해 기저 함수의 계수를 구한다.입력 신호 : $\mathbf s = (s(0), s(1), \cdots, s(n-1))^T$입력 신호 $\mathbf s$는 $n$개의 값으로 구성된다.$s(i)$에서 $i$는 경우에 따라 시간 또는 위치를 나타내는 매개 ..
컴퓨터에 원격으로 접속해서 학습을 하다보면 세션이 다운되어 학습이 끊겨버리는 일이 많이 발생합니다. 이번 글에서는 학습이 안끊기게 설정하는 방법을 알아보겠습니다. 1. sshd_config 파일 열기$ sudo vim /etc/ssh/sshd_config 2. sshd_config 파일을 열고 "/client"로 검색하면 #ClientAliveInterval 0#ClientAliveCountMax 3 위처럼 설정되어있을 텐데, #ClientAliveInterval 180#ClientAliveCountMax 5 로 바꾸어줍니다. ClientAliveInterval은 클라이언트가 서버로 보내는 신호의 간격(초)를 의미하는데, 0은 보내지 않는다는 것을 의미합니다.ClientAliveCountMax는 클라이..

Scaling Up Your Kernels to 31x31: Revisiting Large Kernel Design in CNNsWe revisit large kernel design in modern convolutional neural networks (CNNs). Inspired by recent advances in vision transformers (ViTs), in this paper, we demonstrate that using a few large convolutional kernels instead of a stack of small kernels could barxiv.org이 논문은 2022년 3월 CVPR에서 발표되었다.Abstract이 논문은 ViT(Vision Transfor..

MobileNetV2: Inverted Residuals and Linear BottlenecksIn this paper we describe a new mobile architecture, MobileNetV2, that improves the state of the art performance of mobile models on multiple tasks and benchmarks as well as across a spectrum of different model sizes. We also describe efficient ways of apparxiv.orgAbstractMobileNet V1의 성능을 개선Object detection에 효율적인 적용 방법 SSDLite 소개Semantic seg..