profile
급할수록 돌아가라
post-thumbnail

[NIPS2017]Simple and Scalable Predictive Uncertainty Estimation using Deep Ensembles - [2022.08.05]

AbstractDeep Neural networks (NNs) are powerful black box predictors that have recently achieved impressive performance on a wide spectrum of tasks. Q

2022년 8월 5일
·
0개의 댓글
·
post-thumbnail

[CVPR2019]Learning Loss for Active Learning - [2022.08.05]

AbstractThe preformance of deep neural networks improves with more annotated data. The problem is that the budget for annotation is limited. 보통 네트워크는

2022년 8월 4일
·
0개의 댓글
·
post-thumbnail

[ArXiv2018]Learning Confidence for Out-of-Distribution Detection in Neural Networks - [2022.08.01]

논문의 저자는 다음과 같이 설명한다. > To jointly address these issues, we propose a method of learning confidence estimates for neural networks that is simple to im

2022년 8월 1일
·
0개의 댓글
·

[Gaussian process]

Reference : https://distill.pub/2019/visual-exploration-gaussian-processes/Gaussian process가 뭘까 ?Gaussian processes는 머신러닝에서 매우 강력한 도구이다. 이것들은 Pri

2022년 7월 28일
·
0개의 댓글
·
post-thumbnail

[통계학]Bayes' Theorem

Bayes' theorem .. 너란 녀석..도대체 왜 이딴 형태의 식을 만들었을까 ? 싶다. 보통 수학이 재미없는 이유는 딱 하나다. 그냥 공식만 달달달 외우게 한다. 진짜 문제다 이건. 통계도 마찬가지다. 왜 쓰는지를 알아야지 이게 이해가 되고 배우는데 하나하나 배

2022년 7월 27일
·
0개의 댓글
·

진짜 열받는거

난 진짜 아무것도 모르는 \*\*\*\* 라는 사실이다.진짜 아무것도 모르네시간을 잘 활용하자2년

2022년 7월 27일
·
0개의 댓글
·

[PyTorch]Dataset & DataLoader

Reference : https://pytorch.org/tutorials/beginner/basics/data_tutorial.html코드로 데이터 셈플들을 다루는 작업은 매우 복잡하고 유지하기가 어렵다. 그래서 파이토치는 데이터셋 코드를 트레이닝 코드와 구

2022년 7월 25일
·
0개의 댓글
·

[PyTorch]Distributed Data Parallel - Practice

Reference: https://pytorch.org/tutorials/intermediate/model_parallel_tutorial.html모델 병렬화는 분산 훈련 기술에서 아주 잘 활용된다. PytorchDistributed Data Prarallel

2022년 7월 24일
·
0개의 댓글
·

[PyTorch]Distributed Data Parallel - DataDistributed

Reference : https://pytorch.org/tutorials/intermediate/ddp_tutorial.html먼저 DDP(Distributed Data Parallel)에 대해 알기 위해서는 Distributed에 대해 알아야 한다.PyT

2022년 7월 24일
·
0개의 댓글
·
post-thumbnail

[PyTorch]The mechanics of learning

이번 챕터에서 어떻게 알고리즘이 데이터를 통해 학습할 수 있는지 이해하고, defferentitation and gradient descent를 이용한 parameter estimation로 학습을 재구성한다.위 그림처럼 학습이 진행된다.입력이 주어졌을 때, GT(Gr

2022년 7월 24일
·
0개의 댓글
·
post-thumbnail

[PyTorch]Data Representation

일반적으로 이미지는 RGB 세 채널을 가진다. Python에서는 imageio module을 쓰는데, 이걸로 PNG image를 로딩해보자. 원래 TorchVision을 쓰는데, 가볍게 살펴보려고 쓴다고 한다. permute를 사용하면 올바른 layout을 얻

2022년 7월 24일
·
0개의 댓글
·
post-thumbnail

[PyTorch]Tensor

이 글은 Deep learning with pytorch - Eli Stevens, Luca Antiga, Thomas Viehmann 을 공부한 내용을 정리하는 글 텐서는 고차원의 데이터를 표현하는 방법이다. 그럼에도 다른 multidimensional array

2022년 7월 24일
·
0개의 댓글
·
post-thumbnail

[ICCV2019]Unsupervised Out-of-Distribution Detection by Maximum Classifier Discrepancy - [2022.07.18]

굉장히 간단하면서도 재밌는 아이디어를 가진 논문이다.여느 논문들과 같이 이 논문도 Out-of-Distribution을 어떻게 하면 잘 잡을 수 있을지에 대한 방법을 다룬 논문이다.논문에서 가장 핵심 아이디어는 다음과 같다.먼저 가장 기본적으로 사용되는 OOD 방법처럼

2022년 7월 18일
·
0개의 댓글
·
post-thumbnail

[ICML2018]Deep One-Class Classification - [2022.07.18]

딥러닝이 많이 발전하고, 여러가지 접근법들이 많이 나왔지만 이상치 탐지(anomaly detection)에 관한 내용은 여전히 좀 부족하다. 그래서 저자들은 새로운 이상치 탐지 기법인 Deep Support Vector Data Description에 대해 제시했다.M

2022년 7월 18일
·
0개의 댓글
·
post-thumbnail

[ICLR2021] SSD: A Unified Framework For Self-Supervised Outlier Detection - [2022.07.11]

본 논문은 OOD문제를 self-supervised learning을 통한 representation learning에 기반하여 문제를 해결한다. > We ask the following question: what training information is requ

2022년 7월 11일
·
0개의 댓글
·
post-thumbnail

[ICCV2021]Self-Knowledge Distillation with Progressive Refinement of Targets - [2022.07.08]

이 논문은 Knowledge Distillation을 처음으로 Self-supervised 기법을 적용시킨 논문으로 알고 있다. 이를 통해, 다른 다양한 regularization methods(restricting function space, injecting ran

2022년 7월 8일
·
0개의 댓글
·

Dataset and DataLoader

https://tutorials.pytorch.kr/beginner/basics/data_tutorial.html데이터셋 코드는 모델 학습 코드로부터 분리하는 것이 이상적이다.같이 있으면 보기 너무 어려워서Pytorch는 torch.utils.data.Data

2022년 7월 8일
·
0개의 댓글
·

argparse

https://docs.python.org/ko/3.7/library/argparse.htmlargparse 모듈은 사용자 친화적인 명령행 인터페이스를 쉽게 작성하도록 한다.프로그램이 필요한 인자를 정의하면, argparse는 sys.argv를 어떻게 파싱할지

2022년 7월 8일
·
0개의 댓글
·