NASLib is a Neural Architecture Search (NAS) library for facilitating NAS research for the community by providing interfaces to several state-of-the-art NAS search spaces and optimizers.
Apache License 2.0
528
stars
117
forks
source link
Fix for loading labeled architecture in optimizers #176
BANANAS and NPENAS did not support the load_labeled parameter for sampling the architecture and hence restricted it to be used in configs. BANANAS and NPENAS now have the parameter load_labeled to sample from search space using seach_space.labeled_archs (set by the user). Furthermore, the default config file for zero-cost was also changed to accommodate all the cases zero-cost can be called upon.
BANANAS
andNPENAS
did not support theload_labeled
parameter for sampling the architecture and hence restricted it to be used in configs.BANANAS
andNPENAS
now have the parameterload_labeled
to sample from search space usingseach_space.labeled_archs
(set by the user). Furthermore, the default config file for zero-cost was also changed to accommodate all the cases zero-cost can be called upon.