GraCo / isegm /model /modifiers.py
zhaoyian01's picture
Add application file
6d1366a
raw
history blame
305 Bytes
class LRMult(object):
def __init__(self, lr_mult=1.):
self.lr_mult = lr_mult
def __call__(self, m):
if getattr(m, 'weight', None) is not None:
m.weight.lr_mult = self.lr_mult
if getattr(m, 'bias', None) is not None:
m.bias.lr_mult = self.lr_mult