Cute Bunny 3 'AI' 카테고리의 글 목록 (3 Page)
본문 바로가기 메뉴 바로가기

이빨 빠진 미남이

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

이빨 빠진 미남이

검색하기 폼
  • 분류 전체보기 (212)
    • AI (76)
      • Machine Learning (5)
      • Deep Learning (26)
      • Reinforcement Learing (2)
      • CS231n (11)
      • Computer Vision (19)
      • Linear Algebra (1)
      • NLP (9)
    • Review (19)
      • Paper (19)
    • Skills (116)
      • PyTorch (7)
      • Docker (14)
      • Pythons (20)
      • Git & Github (3)
      • DS & Algorithms (4)
      • Error (48)
      • etc (20)
    • Mine (1)
  • 방명록

AI (76)
Open Set Learning이란?

전통적인 지도학습은 학습과 테스트 샘플이 같은 라벨 공간에 공유되는 closed-set 세계에서 분류기를 학습합니다. Open set learning은 학습 동안 나타나지 않은 클래스로 구성된 테스트 샘플이 존재하는 더 도전적이고 현실적인 세팅입니다. OSL은 훈련에서 나오지 않은 테스트 샘플로 감지하는 sub-task입니다. 위 다이어그램은 unseen class인 '보트' sample에 대한 추론 단계 예시입니다.

AI/Deep Learning 2023. 4. 14. 16:12
Fine-Grained Image Classification이란?

Fine-Grained Image Classification 이는 이미지의 카테고리를 더 세분화하는 것을 목표로 하는 컴퓨터 비전의 작업 중 하나이다. 예를 들면, 새의 다른 종을 분류하는 것이나 꽃의 종을 들 수 있다. 이 작업은 더 세분화(fine-grained)된 이미지 분류라고 불리는 이유는 시각적인 모양과 패턴의 더 미묘한 차이를 구별해야 하므로 이렇게 이름이 붙여졌다.

AI/Deep Learning 2023. 4. 14. 00:03
What's in a "Domain"

What's in a "Domain" Mathematically, joint distribution over inputs and outputs differs over domains 1 and 2 $P_{d1}(X,Y) \ne P_{d2}(X,Y)$ 예를 들어, Content, whit is being discussed Style, the way in which it is being discussed Labeling Standards, the way thtat the same data is labeled Types of Domian Shift Covariate Shift: The input changes but not the labeling $P_{d1}(X) \ne P_{d2}(X)$ $P_{d1}(Y|..

AI/Deep Learning 2023. 3. 19. 21:42
Zero-shot, Few-shot and Unsupervised Learning

Zero-shot learning: 인스턴스별 레이블 없이 학습 Few-shot learning: 몇 가지 훈련 예제로 학습 Unsupervised learning: 레이블 없는 학습. 제로샷 학습과의 차이점 Auto-encoders, contrastive learning Generative models: GANs, VAEs Semi-supervised laerning 라벨 정보가 없는 이미지의 큰 데이터셋이 존재한다면, 이것을 어떻게 다룰 것이닞? Pseudo-labeling 방법이 있다. Pseudo-labels Iterative algorithm: Train a classifier $f$ on $D_1$ Pseudo-labelling: build dataset $D_2$ where we used ..

AI/Deep Learning 2023. 3. 18. 01:45
밑시딥3 정리

제1고지 - 다차원 배열을 tensor라고 하며, 방향을 차원(dimension) 혹은 축(axis)라고 합니다. - 컴퓨터 과학에서 그래프는 노드(node)와 에지(edge)로 구성된 데이터 구조를 말함 - __call__ 메서드는 파이썬의 특수 메서드. 이 메메서드를 정의하면 f = Function() 형태로 함수의 인스턴스 변수를 변수 f에 대입해두고, 나중에 f(...) 형태로 __call__ 메서드를 호출 - 'NotImplementedError'는 ㅇ이 메서드는 상속하여 구현해야 한다는 의미 - assert 문은 결과가 True가 아니면 예외가 발생함 class Variable: def __init__(self, data): self.data = data self.grad = None self..

AI/Deep Learning 2023. 3. 8. 17:59
cs231n 12강 정리 - Video Understanding

이번 포스팅은 cs231n 강의의 Lecture 12 Video Understanding, EECS Lecture 24 Videos 자료를 참고하였습니다. 또한, Videos 관련 강의로는 해당 영상을 참고하였습니다. (Lecture 18: Videos (UMich EECS 498-007) Video = 2D + Tensor 비디오는 이미지 4D 텐서의 시퀀스입니다. (T x 3 x H x W) T: the time or temporal dimension 3: the channel dimension which is three colors RGB channels for the raw input video H and W: two spatial dimensions 비디오에는 motivating task가 있습..

AI/CS231n 2023. 1. 26. 16:14
cs231n 11강 정리 - Attention and Transformers

이번 포스팅은 cs231n 강의의 Lecture 11 Attention and Transformers, EECS Lecture 17 Attention 자료를 참고하였습니다. 또한, Transformer 관련 내용으론 해당 블로그의 번역 글을 참고하였습니다. (The Illustrated Transformer) Sequence to Sequence with RNNs Problem: Input sequence bottlenecked through fixedsized vector. What if T=1000? Idea: use new context vector at each step of decoder! Sequence to Sequnece의 아이디어로는 컨텍스트 벡터를 인코더와 디코더 사이에 연결하는 것입니..

AI/CS231n 2023. 1. 23. 16:44
cs231n 10강 정리 - Reccurrent Neural Network

이번 포스팅은 cs231n 강의의 Lecture 10 Recurrent Neural Networks, EECS 498.008 / 598.008 강의의 Lecture 16 Recurrent Neural Network을 참고하여 정리하였습니다. 이번 강의는 cs231n의 자료가 더 좋습니다. 이번 강의에서 다루는 내용은 RNN, LSTM, GRU Language modeling Sequence-to-sequence Image captioning 입니다. RNN의 Process Sequence를 보면 이렇습니다. 1) One to one Image classification: Image → Label 2)One to many Image Captioning: Image → Sequence of words 3) ..

AI/CS231n 2023. 1. 18. 18:51
이전 1 2 3 4 5 6 ··· 10 다음
이전 다음
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG
  • 리눅스 나노 사용
  • 구글드라이브연동
  • 파이썬 클래스 계층 구조
  • docker
  • linux nano
  • 도커
  • support set
  • 파이썬 딕셔너리
  • 프롬프트
  • 리눅스 나노
  • Prompt
  • prompt learning
  • 딥러닝
  • 파이썬 클래스 다형성
  • 리눅스 nano
  • 서버구글드라이브연동
  • style transfer
  • 도커 컨테이너
  • cs231n
  • python
  • stylegan
  • 도커 작업
  • 파이썬
  • few-shot learning
  • 퓨샷러닝
  • CNN
  • 리눅스
  • Unsupervised learning
  • clip
  • NLP
more
«   2025/05   »
일 월 화 수 목 금 토
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 31
글 보관함
250x250

Blog is powered by Tistory / Designed by Tistory

티스토리툴바