autodl-projects/lib/tf_models/cell_searchs/__init__.py

9 lines
346 B
Python
Raw Normal View History

2020-01-05 12:19:38 +01:00
##################################################
# Copyright (c) Xuanyi Dong [GitHub D-X-Y], 2019 #
##################################################
from .search_model_gdas import TinyNetworkGDAS
2020-01-20 05:24:12 +01:00
from .search_model_darts import TinyNetworkDARTS
2020-01-05 12:19:38 +01:00
2020-01-20 05:24:12 +01:00
nas_super_nets = {'GDAS' : TinyNetworkGDAS,
'DARTS': TinyNetworkDARTS}