Giter Site home page Giter Site logo

Comments (3)

wnma3mz avatar wnma3mz commented on June 8, 2024 1

@Ga-Lee My own guess is that it depends more on the loss of ground truth. st_loss exists as a constraint. Either should work, but it may depend on the specific downstream task.

from knowledge-distillation-zoo.

Ga-Lee avatar Ga-Lee commented on June 8, 2024

Thank you very much for your project and it has helped me a lot. But I have some doubts about train_st.py.

cls_loss = criterionCls(output_s, target)
st_loss = criterionST(F.log_softmax(output_s/args.T, dim=1),
F.softmax(output_t/args.T, dim=1)) * (args.T*args.T) / img.size(0)
st_loss = st_loss * args.lambda_st
loss = cls_loss + st_loss

Here lambda_st is similar to a relaxation factor. But I see the following formula elsewhere.

 cls_loss = criterionCls(output_s, target) 
 st_loss  = criterionST(F.log_softmax(output_s/args.T, dim=1), 
 	                   F.softmax(output_t/args.T, dim=1)) * (args.T*args.T) / img.size(0) 

 loss = (1 - * args.lambda_st ) * cls_loss + st_loss * args.lambda_st 

Could you tell me the impact of the two?

https://github.com/PolarisShi/distillation/blob/8290b4b2138410cb4f1f39ecf2411f7dbb2a676a/student2.py#L218-L223

hello, I feel a little confused about it ,too. May you explain it to me? Thanks a lot

from knowledge-distillation-zoo.

Ga-Lee avatar Ga-Lee commented on June 8, 2024

@Ga-Lee My own guess is that it depends more on the loss of ground truth. st_loss exists as a constraint. Either should work, but it may depend on the specific downstream task.

Got that, thank you~

from knowledge-distillation-zoo.

Related Issues (13)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.