10 lines
227 B
Python
10 lines
227 B
Python
from .model_search import Network
|
|
# acceleration model
|
|
from .CifarNet import NetworkCIFAR
|
|
from .ImageNet import NetworkImageNet
|
|
|
|
# genotypes
|
|
from .genotypes import model_types
|
|
|
|
from .construct_utils import return_alphas_str
|