Open ing907 opened 10 months ago
Hello:
I don't release teacher-student module in this repo for two reasons:
--fix_score_function 'finetune'
in this repo).I don't have the plan to re-implement it, but I can tell you how to achieve it
--fix_score_function 'fixed'/'distill'
, and load your teacher weight as pretrained_milnet
. (train_mil_rankmix.py)pretrained_milnet
.score_function = pretrained_milnet
score_function = milnet
milnet
with teacher weight (more stable in our experiment)milnet.add_distilled_bag_head
or milnet.add_distilled_score_head
to add additional heads in dsmil.py/frmil.py
Hello. Thank you for the excellent work and repository; they have been very helpful.
I'm currently attempting to address my issue using RankMix with my own dataset, but I have a question about it.
I noticed that the teacher-student framework, mentioned in the CVPR 2023 paper, does not seem to be implemented in this repository.
Could you please confirm if this code has been implemented? If not, I'm curious whether there are plans to implement it and upload it later.
Thank you.