Spaces:
Runtime error
Runtime error
File size: 262 Bytes
8e5cc83 |
1 2 3 4 5 6 7 8 9 10 |
from efficientvit.apps.trainer.run_config import RunConfig
__all__ = ["SAMRunConfig"]
class SAMRunConfig(RunConfig):
@property
def none_allowed(self):
return ["reset_bn", "reset_bn_size", "reset_bn_batch_size"] + super().none_allowed
|