Ross Wightman bc264269c9 Morph mnasnet impl into a generic mobilenet that covers Mnasnet, MobileNetV1/V2, ChamNet, FBNet, and related
* add an alternate RMSprop opt that applies eps like TF
* add bn params for passing through alternates and changing defaults to TF style
2019-04-21 15:54:28 -07:00

4 lines
153 B
Python

from optim.adabound import AdaBound
from optim.nadam import Nadam
from optim.rmsprop_tf import RMSpropTF
from optim.optim_factory import create_optimizer