Spaces:
Runtime error
Runtime error
File size: 269 Bytes
b334e29 |
1 2 3 4 5 6 7 8 9 10 11 12 |
# Copyright (c) OpenMMLab. All rights reserved.
from .hook import HOOKS, Hook
@HOOKS.register_module()
class ClosureHook(Hook):
def __init__(self, fn_name, fn):
assert hasattr(self, fn_name)
assert callable(fn)
setattr(self, fn_name, fn)
|