LICENSE
MANIFEST.in
README.md
setup.cfg
setup.py
hyperbox/__init__.py
hyperbox/run.py
hyperbox/train.py
hyperbox.egg-info/PKG-INFO
hyperbox.egg-info/SOURCES.txt
hyperbox.egg-info/dependency_links.txt
hyperbox.egg-info/requires.txt
hyperbox.egg-info/top_level.txt
hyperbox/callbacks/__init__.py
hyperbox/callbacks/wandb_callbacks.py
hyperbox/configs/__init__.py
hyperbox/configs/config.yaml
hyperbox/configs/lite.yaml
hyperbox/configs/callbacks/default.yaml
hyperbox/configs/callbacks/none.yaml
hyperbox/configs/callbacks/wandb.yaml
hyperbox/configs/datamodule/cifar100_datamodule.yaml
hyperbox/configs/datamodule/cifar10_datamodule.yaml
hyperbox/configs/datamodule/fakedata_datamodule.yaml
hyperbox/configs/datamodule/imagenet_dali_datamodule.yaml
hyperbox/configs/datamodule/imagenet_datamodule.yaml
hyperbox/configs/datamodule/medmnist_datamodule.yaml
hyperbox/configs/datamodule/mnist_datamodule.yaml
hyperbox/configs/datamodule/transforms/cifar.yaml
hyperbox/configs/engine/none.yaml
hyperbox/configs/experiment/example_bnnas.yaml
hyperbox/configs/experiment/example_classify.yaml
hyperbox/configs/experiment/example_darts_nas.yaml
hyperbox/configs/experiment/example_full.yaml
hyperbox/configs/experiment/example_nasbench.yaml
hyperbox/configs/experiment/example_ofa_nas.yaml
hyperbox/configs/experiment/example_random_nas.yaml
hyperbox/configs/experiment/example_repnas.yaml
hyperbox/configs/experiment/example_simple.yaml
hyperbox/configs/hparams_search/mnist_optuna.yaml
hyperbox/configs/hydra/default.yaml
hyperbox/configs/logger/comet.yaml
hyperbox/configs/logger/csv.yaml
hyperbox/configs/logger/many_loggers.yaml
hyperbox/configs/logger/mlflow.yaml
hyperbox/configs/logger/neptune.yaml
hyperbox/configs/logger/tensorboard.yaml
hyperbox/configs/logger/wandb.yaml
hyperbox/configs/model/classify_model.yaml
hyperbox/configs/model/darts_model.yaml
hyperbox/configs/model/mnist_model.yaml
hyperbox/configs/model/nasbench_model.yaml
hyperbox/configs/model/ofa_model.yaml
hyperbox/configs/model/random_model.yaml
hyperbox/configs/model/repnas_model.yaml
hyperbox/configs/model/resnet18.yaml
hyperbox/configs/model/loss_cfg/cross_entropy.yaml
hyperbox/configs/model/loss_cfg/cross_entropy_labelsmooth.yaml
hyperbox/configs/model/metric_cfg/accuracy.yaml
hyperbox/configs/model/mutator_cfg/darts_multiple_mutator.yaml
hyperbox/configs/model/mutator_cfg/darts_mutator.yaml
hyperbox/configs/model/mutator_cfg/ea_mutator.yaml
hyperbox/configs/model/mutator_cfg/enas_mutator.yaml
hyperbox/configs/model/mutator_cfg/fairdarts_mutator.yaml
hyperbox/configs/model/mutator_cfg/fairnas_multipath_mutator.yaml
hyperbox/configs/model/mutator_cfg/fairnas_mutator.yaml
hyperbox/configs/model/mutator_cfg/onehot_mutator.yaml
hyperbox/configs/model/mutator_cfg/random_multiple_mutator.yaml
hyperbox/configs/model/mutator_cfg/random_mutator.yaml
hyperbox/configs/model/mutator_cfg/repnas_mutator.yaml
hyperbox/configs/model/network_cfg/bn_nas.yaml
hyperbox/configs/model/network_cfg/darts_network.yaml
hyperbox/configs/model/network_cfg/enas_macro.yaml
hyperbox/configs/model/network_cfg/enas_micro.yaml
hyperbox/configs/model/network_cfg/finegrained_resnet.yaml
hyperbox/configs/model/network_cfg/mobilenet2d_nas.yaml
hyperbox/configs/model/network_cfg/mobilenet3d_nas.yaml
hyperbox/configs/model/network_cfg/nasbench201.yaml
hyperbox/configs/model/network_cfg/nasbench_mbnet.yaml
hyperbox/configs/model/network_cfg/ofa_mbv3.yaml
hyperbox/configs/model/network_cfg/repnas_network.yaml
hyperbox/configs/model/network_cfg/torch_network.yaml
hyperbox/configs/model/optimizer_cfg/adadelta.yaml
hyperbox/configs/model/optimizer_cfg/adam.yaml
hyperbox/configs/model/optimizer_cfg/adamw.yaml
hyperbox/configs/model/optimizer_cfg/asam.yaml
hyperbox/configs/model/optimizer_cfg/lamb.yaml
hyperbox/configs/model/optimizer_cfg/rmsprop.yaml
hyperbox/configs/model/optimizer_cfg/sam.yaml
hyperbox/configs/model/optimizer_cfg/sgd.yaml
hyperbox/configs/model/scheduler_cfg/CosineAnnealingLR.yaml
hyperbox/configs/model/scheduler_cfg/ExponentialLR.yaml
hyperbox/configs/model/scheduler_cfg/MultiStepLR.yaml
hyperbox/configs/model/scheduler_cfg/ReducedLRonPlateau.yaml
hyperbox/configs/model/scheduler_cfg/warmup_scheduler.yaml
hyperbox/configs/trainer/ddp.yaml
hyperbox/configs/trainer/debug.yaml
hyperbox/configs/trainer/default.yaml
hyperbox/configs/trainer/minimal.yaml
hyperbox/datamodules/__init__.py
hyperbox/datamodules/cifar_datamodule.py
hyperbox/datamodules/distributed_sampler_wrapper.py
hyperbox/datamodules/fakedata_datamodule.py
hyperbox/datamodules/imagenet_datamodule.py
hyperbox/datamodules/medmnist_datamodule.py
hyperbox/datamodules/mnist_datamodule.py
hyperbox/datamodules/datasets/__init__.py
hyperbox/datamodules/transforms/__init__.py
hyperbox/datamodules/transforms/albumentation_transforms.py
hyperbox/datamodules/transforms/autoaugment.py
hyperbox/datamodules/transforms/base_transforms.py
hyperbox/datamodules/transforms/custom_transforms.py
hyperbox/datamodules/transforms/cutout.py
hyperbox/datamodules/transforms/torch_transforms.py
hyperbox/engine/__init__.py
hyperbox/engine/base_engine.py
hyperbox/losses/__init__.py
hyperbox/losses/ce_labelsmooth_loss.py
hyperbox/losses/focal_loss.py
hyperbox/losses/kd_loss.py
hyperbox/models/__init__.py
hyperbox/models/base_model.py
hyperbox/models/classify_model.py
hyperbox/models/darts_model.py
hyperbox/models/ea_model.py
hyperbox/models/mnist_model.py
hyperbox/models/nasbench_model.py
hyperbox/models/ofa_model.py
hyperbox/models/random_model.py
hyperbox/mutables/__init__.py
hyperbox/mutables/masker.py
hyperbox/mutables/spaces.py
hyperbox/mutables/layers/__init__.py
hyperbox/mutables/layers/layers2d.py
hyperbox/mutables/ops/__init__.py
hyperbox/mutables/ops/base_module.py
hyperbox/mutables/ops/batchnorm.py
hyperbox/mutables/ops/conv.py
hyperbox/mutables/ops/groupnorm.py
hyperbox/mutables/ops/linear.py
hyperbox/mutables/ops/utils.py
hyperbox/mutator/__init__.py
hyperbox/mutator/base_mutator.py
hyperbox/mutator/darts_multiple_mutator.py
hyperbox/mutator/darts_mutator.py
hyperbox/mutator/default_mutator.py
hyperbox/mutator/ea_mutator.py
hyperbox/mutator/enas_mutator.py
hyperbox/mutator/evolution_mutator.py
hyperbox/mutator/fairnas_multipath_mutator.py
hyperbox/mutator/fairnas_mutator.py
hyperbox/mutator/fixed_mutator.py
hyperbox/mutator/hete_mutator.py
hyperbox/mutator/onehot_mutator.py
hyperbox/mutator/proxyless_mutator.py
hyperbox/mutator/random_multiple_mutator.py
hyperbox/mutator/random_mutator.py
hyperbox/mutator/repnas_mutator.py
hyperbox/mutator/sequential_mutator.py
hyperbox/mutator/utils.py
hyperbox/networks/__init__.py
hyperbox/networks/base_nas_network.py
hyperbox/networks/network_ema.py
hyperbox/networks/pytorch_modules.py
hyperbox/networks/simple_dense_net.py
hyperbox/networks/utils.py
hyperbox/networks/bnnas/__init__.py
hyperbox/networks/bnnas/bn_blocks.py
hyperbox/networks/bnnas/bn_net.py
hyperbox/networks/bnnas/ea_search.py
hyperbox/networks/darts/__init__.py
hyperbox/networks/darts/darts_network.py
hyperbox/networks/darts/darts_ops.py
hyperbox/networks/enas/__init__.py
hyperbox/networks/enas/enas_network.py
hyperbox/networks/enas/enas_ops.py
hyperbox/networks/mobilenet/__init__.py
hyperbox/networks/mobilenet/mobile3d_net.py
hyperbox/networks/mobilenet/mobile3d_ops.py
hyperbox/networks/mobilenet/mobile_net.py
hyperbox/networks/mobilenet/mobile_ops.py
hyperbox/networks/mobilenet/mobile_utils.py
hyperbox/networks/nasbench101/__init__.py
hyperbox/networks/nasbench101/base_ops.py
hyperbox/networks/nasbench101/graph_util.py
hyperbox/networks/nasbench101/model_spec.py
hyperbox/networks/nasbench101/nasbench101.py
hyperbox/networks/nasbench101/db_gen/__init__.py
hyperbox/networks/nasbench101/db_gen/constants.py
hyperbox/networks/nasbench101/db_gen/db_gen.py
hyperbox/networks/nasbench101/db_gen/graph_util.py
hyperbox/networks/nasbench101/db_gen/model.py
hyperbox/networks/nasbench101/db_gen/query.py
hyperbox/networks/nasbench201/__init__.py
hyperbox/networks/nasbench201/nasbench201.py
hyperbox/networks/nasbench201/db_gen/__init__.py
hyperbox/networks/nasbench201/db_gen/constants.py
hyperbox/networks/nasbench201/db_gen/db_gen.py
hyperbox/networks/nasbench201/db_gen/model.py
hyperbox/networks/nasbench201/db_gen/query.py
hyperbox/networks/nasbench301/__init__.py
hyperbox/networks/nasbench301/nasbench301_network.py
hyperbox/networks/nasbench301/utils.py
hyperbox/networks/nasbench_mbnet/__init__.py
hyperbox/networks/nasbench_mbnet/network.py
hyperbox/networks/ofa/__init__.py
hyperbox/networks/ofa/ofa_mbv3.py
hyperbox/networks/repnas/__init__.py
hyperbox/networks/repnas/rep_ops.py
hyperbox/networks/repnas/repnas_spos.py
hyperbox/networks/repnas/utils.py
hyperbox/networks/resnet/__init__.py
hyperbox/networks/resnet/resnet.py
hyperbox/networks/spos/__init__.py
hyperbox/networks/spos/shuffle_blocks.py
hyperbox/networks/spos/spos_net.py
hyperbox/optimizers/__init__.py
hyperbox/optimizers/lamb.py
hyperbox/optimizers/sam.py
hyperbox/schedulers/__init__.py
hyperbox/schedulers/warmup_scheduler.py
hyperbox/utils/__init__.py
hyperbox/utils/average_meter.py
hyperbox/utils/calc_model_size.py
hyperbox/utils/logger.py
hyperbox/utils/metrics.py
hyperbox/utils/utils.py
hyperbox/utils/visualize_darts_cell.py
hyperbox/utils/visualize_mbconv_net.py
tests/__init__.py
tests/helpers/__init__.py
tests/helpers/module_available.py
tests/helpers/run_command.py
tests/helpers/runif.py
tests/smoke/__init__.py
tests/smoke/test_commands.py
tests/smoke/test_mixed_precision.py
tests/smoke/test_sweeps.py
tests/smoke/test_wandb.py
tests/unit/__init__.py
tests/unit/test_sth.py