(**kwargs)
| 628 | return model |
| 629 | |
| 630 | def vit_base_patch16_ema(**kwargs): |
| 631 | backbone = vit_base_patch16(**kwargs) |
| 632 | backbone.ema = [vit_base_patch16(**kwargs)] |
| 633 | backbone.ema[0].mask_input = False |
| 634 | return backbone |
| 635 | |
| 636 | |
| 637 | class dummy_logger: |
nothing calls this directly
no test coverage detected