Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- noise contrast estimation
- sample rows
- non parametic softmax
- straightup
- resample
- sidleup
- REINFORCE
- normalization
- domain adaptation
- model-free control
- remove outliers
- rest-api
- clip intensity values
- Excel
- Actor-Critic
- freebooze
- MRI
- scowl
- checkitout
- Knowledge Distillation
- thresholding
- loss functions
- fastapi
- pulloff
- shadowing
- Policy Gradient
- Inorder Traversal
- objective functions for machine learning
- 3d medical image
- 자료구조
Archives
- Today
- Total
Let's Run Jinyeah
Transfer Learning and Domain Adaptation 본문
“Domain” and “Task”
- Domain relates to the feature space of a specific dataset and the marginal probability distribution of features
- Task relates to the label space of a dataset and an objective predictive function
Transfer Learning
- goal is to transfer the knowledge learned from the Task(a) on Domain A to the Task(b) on Domain B
- common to update the last several layers of the pre-trained network towards a new given task with a new label space (the supporting assumption is that the early layers in the network extract low-level features which are universal for vision tasks)
- Target Domain에 label이 없다면 학습이 불가능
Domain Adaptation
- particular type of transfer learning
- goal is to transfer knowledge from S Domain to T Domain to perform a specific Task on T (Domain Shift)
- Task is shared
- the marginal distributions are different between the source(S) Domain and target(T) Domain
Types of Domain Adaptation
- Supervised DA
- small number labeled data in the target domain are available
- pre-train the model with source dataset and fine-tune with target dataset (Transfer learning)
- Semi-supervised DA
- small number of labeled data as well as redundant unlabeled in the target domain are available
- Unsupervised DA / Self-supervised DA
- only unlabeled target data are available
- 대표논문. [DANN] Domain-Adversarial Training of Neural Networks
- self-supervised a branch of unsupervised learning: Obtain labels form the data itself
- Source-free DA
- only a source pre-trained model and an unlabeled target domain dataset are available
- 대표논문. [DistillAdapt] Source-Free Activate Visual Domain Adaptation
Reference
https://lhw0772.medium.com/study-da-domain-adaptation-%EC%95%8C%EC%95%84%EB%B3%B4%EA%B8%B0-%EA%B8%B0%EB%B3%B8%ED%8E%B8-4af4ab63f871
Guan, Hao, and Mingxia Liu. "Domain adaptation for medical image analysis: a survey." IEEE Transactions on Biomedical Engineering 69.3 (2021)
'Deep Learning > Theory' 카테고리의 다른 글
Entropy and Cross-Entropy (0) | 2022.07.31 |
---|---|
Normalization (0) | 2022.06.18 |
Bayes Decision Theory (0) | 2022.05.15 |
Objective function/Loss function (0) | 2022.05.10 |
Variance & Bias (0) | 2021.08.30 |
Comments