Try   HackMD

Global and Local Mixture Consistency Cumulative Learning for Long-tailed Visual Recognitions

作者:Fei Du, Peng Yang, Qi Jia, Fengtao Nan, Xiaoting Chen, Yun Yang
論文連結:https://openaccess.thecvf.com/content/CVPR2023/papers/Du_Global_and_Local_Mixture_Consistency_Cumulative_Learning_for_Long-Tailed_Visual_CVPR_2023_paper.pdf

整理by: chewei

主要貢獻:

  • One-Stage training strategy : GLMC
    • 一個Loss: Global and Local mixture consistency Loss
    • 一個逐Epoch累計變化的Loss 參數

主要圍繞在Loss改進

整體架構

  • 首先以[1] BBN方式做出inverse sampler 使head->tail和tail->head 的sample相同,目的是為了要增強 Tail Class 的精確度:
    Sample Function:
    Pi=wij=1cwj,wi=NmaxNi

    Image Not Showing Possible Reasons
    • The image was uploaded to a note which you don't have access to
    • The note which the image was originally uploaded to has been deleted
    Learn More →
  • 接下來對此兩張照片一起做Global Mixture(MixUp),以及Local Mixture(CutMix)
    Global Mixture Function:
    λBeta(β,β)x~g=λxi+(1λ)xj,p~g=λpi+(1λ)pj.

    Local Mixture Function:
    x~l=Mxi+(1M)xj.Bounding Box :B=(rx,ry,rw,rh)rxUniform(0,W),rw=W1λryUniform(0,H),rh=H1λ

    Image Not Showing Possible Reasons
    • The image was uploaded to a note which you don't have access to
    • The note which the image was originally uploaded to has been deleted
    Learn More →
  • 接著放進Model(ResNet32)後分別算出
    • LCE(C(x~),y~)
    • Lcb(C(x~),w~,y~)
    • Lsim=sim(ug,sg(hl))+sim(ul,sg(hg))
LCE
爲CrossEntropy Loss:

LEC=12Ni=1N(p~gi(logf(x~gi))+p~li(logf(x~li)))

LCE
爲Rebalanced Loss:

Lcb=12Ni=1Nw~i(p~gi(logf(x~gi))+p~li(logf(x~li)))

Lsim
爲[2]SimSiam 所提出之 SimSiam Loss:

Lsim=sim(ug,sg(hl))+sim(ul,sg(hg))

結合方式爲:

Ltotal=αLCE+(1α)Lcb+γLsim
γ
經過消融實驗後設定爲10
α
計算方式爲:
α=1(TTmax)2

Image Not Showing Possible Reasons
  • The image was uploaded to a note which you don't have access to
  • The note which the image was originally uploaded to has been deleted
Learn More →


整體架構圖:

Image Not Showing Possible Reasons
  • The image was uploaded to a note which you don't have access to
  • The note which the image was originally uploaded to has been deleted
Learn More →

Loss架構圖:

Image Not Showing Possible Reasons
  • The image was uploaded to a note which you don't have access to
  • The note which the image was originally uploaded to has been deleted
Learn More →

stop-gradient
simulate cosine

參考資料

[1] BBN
[2] siamsim

BBN筆記