Entries from 2023-09-01 to 1 month

テンプレート

What is Distinctivity compared to the other research? Metoldology Validity Discussion The next paer I should read

A SURVEY ON CONTRASTIVE SELF-SUPERVISED LEARNINGを読む

Inroduction Self-supervised trainingつまり自己教師あり学習についてのサーベイ論文 self-supervised learning methods have integrated both generative and contrastive approaches つまり自己教師あり学習は生成的か対照的かと言う手法によって分けられ…

Diffusionモデルを理解する。Diffusion Models: A Comprehensive Survey of Methods and Applicationsを読む

Abstract efficient sampling, improved likelihood estimation, and handling data with special structuresという観点で使いやすい つまり効率的なサンプリング 類似点推定 データを特別な形で扱う Introduction 長らく続いていた画像生成におけるGANの性…

【アウトプット】Probabilistic teacherのコード面の理解

if entropy_weight: if self.cfg.UNSUPNET.MODEL_TYPE == "GUASSIAN": entropy = 0.5 * torch.log(2 * np.pi * np.e * sigma_p) max_entropy = 0.5 * math.log(2 * np.pi * np.e) elif self.cfg.UNSUPNET.MODEL_TYPE == "LAPLACE": entropy = 1 + 0.5 * torc…

【アウトプット】Learning Domain Adaptive Object Detection with Probabilistic Teacherを読んだ

Abstract Self-trainingの教師なしドメイン適応能力は、擬似ラベルの品質に左右される Uncertainty-guidedな方法としてEntropy Focal Lossを使って計算することにより、従来の方法を超えるAP値を叩き出した Introduction ドメインシフトによって、APの値が極…