Closed Noguchi-Masashi closed 1 year ago
Hi, Thanks for your excellent work and code!
In Appendix, You evaluate DAML-S where the three domains each have a specific classifier but share the whole backbone. I would like to know how to implement DAML-S.
Would the following changes make DAML a DAML-S?
backbone1 = resnet18_fast() #backbone2 = resnet18_fast() #backbone3 = resnet18_fast() classifier = ClassifierFast(backbone1, backbone1, backbone1, num_classes).cuda()
Thank you in advance.
You have to alter the daml_utils.py file. You have to define a new class that only uses one backbone and multi heads.
Thank you for your kind response.
Hi, Thanks for your excellent work and code!
In Appendix, You evaluate DAML-S where the three domains each have a specific classifier but share the whole backbone. I would like to know how to implement DAML-S.
Would the following changes make DAML a DAML-S?
Thank you in advance.