├── BiBench ├── .gitignore ├── bibench │ ├── __init__.py │ ├── apis │ │ ├── __init__.py │ │ ├── test.py │ │ └── train.py │ ├── core │ │ ├── hook │ │ │ ├── __init__.py │ │ │ └── model_params_update_hook.py │ │ └── optimizer │ │ │ ├── __init__.py │ │ │ ├── bert_adam.py │ │ │ └── builder.py │ ├── datasets │ │ ├── __init__.py │ │ └── builder.py │ ├── models │ │ ├── __init__.py │ │ ├── architectures │ │ │ ├── __init__.py │ │ │ ├── builder.py │ │ │ ├── simple_architecture.py │ │ │ └── utils.py │ │ ├── backbones │ │ │ ├── __init__.py │ │ │ ├── builder.py │ │ │ ├── reactnet.py │ │ │ ├── resnet.py │ │ │ ├── resnet_cifar.py │ │ │ ├── ssd_vgg.py │ │ │ ├── vgg.py │ │ │ └── vgg_cifar.py │ │ └── layers │ │ │ ├── __init__.py │ │ │ ├── bireal.py │ │ │ ├── bnn.py │ │ │ ├── builder.py │ │ │ ├── dorefa.py │ │ │ ├── fda.py │ │ │ ├── react.py │ │ │ ├── recu.py │ │ │ ├── xnor.py │ │ │ └── xnorplusplus.py │ ├── utils │ │ ├── __init__.py │ │ ├── collect_env.py │ │ ├── dist_utils.py │ │ ├── logger.py │ │ ├── misc.py │ │ └── path_utils.py │ └── version.py ├── configs │ ├── _base_ │ │ ├── datasets │ │ │ ├── cifar10.py │ │ │ ├── coco.py │ │ │ ├── glue_cola.py │ │ │ ├── glue_mnli.py │ │ │ ├── glue_mrpc.py │ │ │ ├── imagenet.py │ │ │ ├── modelnet40.py │ │ │ ├── shapenet.py │ │ │ ├── speech_commands.py │ │ │ └── voc0712.py │ │ ├── default_runtime.py │ │ ├── models │ │ │ ├── basebert.py │ │ │ ├── bireal18.py │ │ │ ├── dfsmn.py │ │ │ ├── pointnet.py │ │ │ ├── reactnet.py │ │ │ ├── resnet18.py │ │ │ ├── resnet18_faster-rcnn.py │ │ │ ├── resnet20.py │ │ │ ├── resnet34.py │ │ │ └── vgg16_ssd300.py │ │ └── schedules │ │ │ ├── adam_1e-3_cosinelr_100e.py │ │ │ ├── adam_1e-3_cosinelr_200e.py │ │ │ ├── adam_1e-3_cosinelr_400e.py │ │ │ ├── adam_1e-3_steplr_200e.py │ │ │ ├── adam_1e-4_cosinelr_200e.py │ │ │ ├── adam_1e-4_steplr_200e.py │ │ │ ├── glue_cola.py │ │ │ ├── glue_mnli.py │ │ │ ├── glue_mrpc.py │ │ │ ├── sgd_1e-1_cosinelr_100e.py │ │ │ ├── sgd_1e-1_cosinelr_200e.py │ │ │ ├── sgd_1e-1_cosinelr_400e.py │ │ │ ├── sgd_1e-1_steplr_200e.py │ │ │ ├── sgd_1e-2_cosinelr_200e.py │ │ │ ├── sgd_1e-2_steplr_200e.py │ │ │ ├── sgd_1e-2_steplr_5e.py │ │ │ ├── sgd_1e-3_cosinelr_300e_warmup.py │ │ │ ├── sgd_2e-2_steplr_24e_warmup.py │ │ │ └── sgd_5e-3_cosinelr_300e_warmup.py │ ├── acc_cifar10 │ │ ├── bireal18_bireal_adam_1e-3_cosinelr.py │ │ ├── bireal18_bireal_sgd_1e-1_cosinelr.py │ │ ├── bireal18_bnn_adam_1e-3_cosinelr.py │ │ ├── bireal18_bnn_sgd_1e-1_cosinelr.py │ │ ├── bireal18_dorefa_adam_1e-3_cosinelr.py │ │ ├── bireal18_dorefa_sgd_1e-1_cosinelr.py │ │ ├── bireal18_fda_adam_1e-3_cosinelr.py │ │ ├── bireal18_fda_sgd_1e-1_cosinelr.py │ │ ├── bireal18_fp32.py │ │ ├── bireal18_react_adam_1e-3_cosinelr.py │ │ ├── bireal18_react_sgd_1e-1_cosinelr.py │ │ ├── bireal18_recu_adam_1e-3_cosinelr.py │ │ ├── bireal18_recu_sgd_1e-1_cosinelr.py │ │ ├── bireal18_xnor_adam_1e-3_cosinelr.py │ │ ├── bireal18_xnor_sgd_1e-1_cosinelr.py │ │ ├── bireal18_xnorplusplus_adam_1e-3_cosinelr.py │ │ ├── bireal18_xnorplusplus_sgd_1e-1_cosinelr.py │ │ ├── reactnet_bireal_adam_1e-3_cosinelr.py │ │ ├── reactnet_bnn_adam_1e-3_cosinelr.py │ │ ├── reactnet_dorefa_adam_1e-3_cosinelr.py │ │ ├── reactnet_fda_adam_1e-3_cosinelr.py │ │ ├── reactnet_fp32.py │ │ ├── reactnet_react_adam_1e-3_cosinelr.py │ │ ├── reactnet_recu_adam_1e-3_cosinelr.py │ │ ├── reactnet_xnor_adam_1e-3_cosinelr.py │ │ ├── reactnet_xnorplusplus_adam_1e-3_cosinelr.py │ │ ├── resnet18_bireal_adam_1e-3_cosinelr.py │ │ ├── resnet18_bireal_sgd_1e-1_cosinelr.py │ │ ├── resnet18_bnn_adam_1e-3_cosinelr.py │ │ ├── resnet18_bnn_sgd_1e-1_cosinelr.py │ │ ├── resnet18_dorefa_adam_1e-3_cosinelr.py │ │ ├── resnet18_dorefa_sgd_1e-1_cosinelr.py │ │ ├── resnet18_fda_adam_1e-3_cosinelr.py │ │ ├── resnet18_fda_sgd_1e-1_cosinelr.py │ │ ├── resnet18_fp32.py │ │ ├── resnet18_react_adam_1e-3_cosinelr.py │ │ ├── resnet18_react_sgd_1e-1_cosinelr.py │ │ ├── resnet18_recu_adam_1e-3_cosinelr.py │ │ ├── resnet18_recu_sgd_1e-1_cosinelr.py │ │ ├── resnet18_xnor_adam_1e-3_cosinelr.py │ │ ├── resnet18_xnor_sgd_1e-1_cosinelr.py │ │ ├── resnet18_xnorplusplus_adam_1e-3_cosinelr.py │ │ ├── resnet18_xnorplusplus_sgd_1e-1_cosinelr.py │ │ ├── resnet20_bireal_adam_1e-3_cosinelr.py │ │ ├── resnet20_bireal_sgd_1e-1_cosinelr.py │ │ ├── resnet20_bnn_adam_1e-3_cosinelr.py │ │ ├── resnet20_bnn_sgd_1e-1_cosinelr.py │ │ ├── resnet20_dorefa_adam_1e-3_cosinelr.py │ │ ├── resnet20_dorefa_sgd_1e-1_cosinelr.py │ │ ├── resnet20_fda_adam_1e-3_cosinelr.py │ │ ├── resnet20_fda_sgd_1e-1_cosinelr.py │ │ ├── resnet20_fp32.py │ │ ├── resnet20_react_adam_1e-3_cosinelr.py │ │ ├── resnet20_react_sgd_1e-1_cosinelr.py │ │ ├── resnet20_recu_adam_1e-3_cosinelr.py │ │ ├── resnet20_recu_sgd_1e-1_cosinelr.py │ │ ├── resnet20_xnor_adam_1e-3_cosinelr.py │ │ ├── resnet20_xnor_sgd_1e-1_cosinelr.py │ │ ├── resnet20_xnorplusplus_adam_1e-3_cosinelr.py │ │ ├── resnet20_xnorplusplus_sgd_1e-1_cosinelr.py │ │ ├── resnet34_bireal_adam_1e-3_cosinelr.py │ │ ├── resnet34_bireal_sgd_1e-1_cosinelr.py │ │ ├── resnet34_bnn_adam_1e-3_cosinelr.py │ │ ├── resnet34_bnn_sgd_1e-1_cosinelr.py │ │ ├── resnet34_dorefa_adam_1e-3_cosinelr.py │ │ ├── resnet34_dorefa_sgd_1e-1_cosinelr.py │ │ ├── resnet34_fda_adam_1e-3_cosinelr.py │ │ ├── resnet34_fda_sgd_1e-1_cosinelr.py │ │ ├── resnet34_fp32.py │ │ ├── resnet34_react_adam_1e-3_cosinelr.py │ │ ├── resnet34_react_sgd_1e-1_cosinelr.py │ │ ├── resnet34_recu_adam_1e-3_cosinelr.py │ │ ├── resnet34_recu_sgd_1e-1_cosinelr.py │ │ ├── resnet34_xnor_adam_1e-3_cosinelr.py │ │ ├── resnet34_xnor_sgd_1e-1_cosinelr.py │ │ ├── resnet34_xnorplusplus_adam_1e-3_cosinelr.py │ │ └── resnet34_xnorplusplus_sgd_1e-1_cosinelr.py │ ├── acc_coco │ │ ├── resnet18_bireal_faster-rcnn.py │ │ ├── resnet18_bnn_faster-rcnn.py │ │ ├── resnet18_dorefa_faster-rcnn.py │ │ ├── resnet18_fda_faster-rcnn.py │ │ ├── resnet18_fp32_faster-rcnn.py │ │ ├── resnet18_react_faster-rcnn.py │ │ ├── resnet18_recu_faster-rcnn.py │ │ ├── resnet18_xnor_faster-rcnn.py │ │ └── resnet18_xnorplusplus_faster-rcnn.py │ ├── acc_glue │ │ ├── basebert_bireal_cola.py │ │ ├── basebert_bireal_mnli.py │ │ ├── basebert_bireal_mrpc.py │ │ ├── basebert_bnn_cola.py │ │ ├── basebert_bnn_mnli.py │ │ ├── basebert_bnn_mrpc.py │ │ ├── basebert_dorefa_cola.py │ │ ├── basebert_dorefa_mnli.py │ │ ├── basebert_dorefa_mrpc.py │ │ ├── basebert_fda_cola.py │ │ ├── basebert_fda_mnli.py │ │ ├── basebert_fda_mrpc.py │ │ ├── basebert_react_cola.py │ │ ├── basebert_react_mnli.py │ │ ├── basebert_react_mrpc.py │ │ ├── basebert_recu_cola.py │ │ ├── basebert_recu_mnli.py │ │ ├── basebert_recu_mrpc.py │ │ ├── basebert_xnor_cola.py │ │ ├── basebert_xnor_mnli.py │ │ ├── basebert_xnor_mrpc.py │ │ ├── basebert_xnorplusplus_cola.py │ │ ├── basebert_xnorplusplus_mnli.py │ │ └── basebert_xnorplusplus_mrpc.py │ ├── acc_imagenet │ │ ├── resnet18_bireal.py │ │ ├── resnet18_bnn.py │ │ ├── resnet18_dorefa.py │ │ ├── resnet18_fda.py │ │ ├── resnet18_fp32.py │ │ ├── resnet18_react.py │ │ ├── resnet18_recu.py │ │ ├── resnet18_xnor.py │ │ └── resnet18_xnorplusplus.py │ ├── acc_modelnet40 │ │ ├── pointnet_bireal.py │ │ ├── pointnet_bnn.py │ │ ├── pointnet_dorefa.py │ │ ├── pointnet_fda.py │ │ ├── pointnet_fp32.py │ │ ├── pointnet_react.py │ │ ├── pointnet_recu.py │ │ ├── pointnet_xnor.py │ │ ├── pointnet_xnorplusplus.py │ │ ├── pointnetv_bireal.py │ │ ├── pointnetv_bnn.py │ │ ├── pointnetv_dorefa.py │ │ ├── pointnetv_fda.py │ │ ├── pointnetv_fp32.py │ │ ├── pointnetv_react.py │ │ ├── pointnetv_recu.py │ │ ├── pointnetv_xnor.py │ │ └── pointnetv_xnorplusplus.py │ ├── acc_shapenet │ │ ├── pointnet_bireal.py │ │ ├── pointnet_bnn.py │ │ ├── pointnet_dorefa.py │ │ ├── pointnet_fda.py │ │ ├── pointnet_fp32.py │ │ ├── pointnet_react.py │ │ ├── pointnet_recu.py │ │ ├── pointnet_xnor.py │ │ └── pointnet_xnorplusplus.py │ ├── acc_speech │ │ ├── dfsmn_bireal.py │ │ ├── dfsmn_bnn.py │ │ ├── dfsmn_dorefa.py │ │ ├── dfsmn_fda.py │ │ ├── dfsmn_fp32.py │ │ ├── dfsmn_react.py │ │ ├── dfsmn_recu.py │ │ ├── dfsmn_xnor.py │ │ └── dfsmn_xnorplusplus.py │ ├── acc_voc │ │ ├── resnet18_bireal_faster-rcnn.py │ │ ├── resnet18_bnn_faster-rcnn.py │ │ ├── resnet18_dorefa_faster-rcnn.py │ │ ├── resnet18_fda_faster-rcnn.py │ │ ├── resnet18_fp32_faster-rcnn.py │ │ ├── resnet18_react_faster-rcnn.py │ │ ├── resnet18_recu_faster-rcnn.py │ │ ├── resnet18_xnor_faster-rcnn.py │ │ ├── resnet18_xnorplusplus_faster-rcnn.py │ │ ├── vgg16_bireal_ssd300.py │ │ ├── vgg16_bnn_ssd300.py │ │ ├── vgg16_dorefa_ssd300.py │ │ ├── vgg16_fda_ssd300.py │ │ ├── vgg16_fp32_ssd300.py │ │ ├── vgg16_react_ssd300.py │ │ ├── vgg16_recu_ssd300.py │ │ ├── vgg16_xnor_ssd300.py │ │ └── vgg16_xnorplusplus_ssd300.py │ └── eff_train │ │ ├── resnet18_bireal_adam_1e-3_cosinelr.py │ │ ├── resnet18_bireal_adam_1e-3_steplr.py │ │ ├── resnet18_bireal_adam_1e-4_cosinelr.py │ │ ├── resnet18_bireal_adam_1e-4_steplr.py │ │ ├── resnet18_bireal_sgd_1e-1_cosinelr.py │ │ ├── resnet18_bireal_sgd_1e-1_steplr.py │ │ ├── resnet18_bireal_sgd_1e-2_cosinelr.py │ │ ├── resnet18_bireal_sgd_1e-2_steplr.py │ │ ├── resnet18_bnn_adam_1e-3_cosinelr.py │ │ ├── resnet18_bnn_adam_1e-3_steplr.py │ │ ├── resnet18_bnn_adam_1e-4_cosinelr.py │ │ ├── resnet18_bnn_adam_1e-4_steplr.py │ │ ├── resnet18_bnn_sgd_1e-1_cosinelr.py │ │ ├── resnet18_bnn_sgd_1e-1_steplr.py │ │ ├── resnet18_bnn_sgd_1e-2_cosinelr.py │ │ ├── resnet18_bnn_sgd_1e-2_steplr.py │ │ ├── resnet18_dorefa_adam_1e-3_cosinelr.py │ │ ├── resnet18_dorefa_adam_1e-3_steplr.py │ │ ├── resnet18_dorefa_adam_1e-4_cosinelr.py │ │ ├── resnet18_dorefa_adam_1e-4_steplr.py │ │ ├── resnet18_dorefa_sgd_1e-1_cosinelr.py │ │ ├── resnet18_dorefa_sgd_1e-1_steplr.py │ │ ├── resnet18_dorefa_sgd_1e-2_cosinelr.py │ │ ├── resnet18_dorefa_sgd_1e-2_steplr.py │ │ ├── resnet18_fda_adam_1e-3_cosinelr.py │ │ ├── resnet18_fda_adam_1e-3_steplr.py │ │ ├── resnet18_fda_adam_1e-4_cosinelr.py │ │ ├── resnet18_fda_adam_1e-4_steplr.py │ │ ├── resnet18_fda_sgd_1e-1_cosinelr.py │ │ ├── resnet18_fda_sgd_1e-1_steplr.py │ │ ├── resnet18_fda_sgd_1e-2_cosinelr.py │ │ ├── resnet18_fda_sgd_1e-2_steplr.py │ │ ├── resnet18_fp32_adam_1e-3_cosinelr.py │ │ ├── resnet18_fp32_adam_1e-3_steplr.py │ │ ├── resnet18_fp32_adam_1e-4_cosinelr.py │ │ ├── resnet18_fp32_adam_1e-4_steplr.py │ │ ├── resnet18_fp32_sgd_1e-1_cosinelr.py │ │ ├── resnet18_fp32_sgd_1e-1_steplr.py │ │ ├── resnet18_fp32_sgd_1e-2_cosinelr.py │ │ ├── resnet18_fp32_sgd_1e-2_steplr.py │ │ ├── resnet18_react_adam_1e-3_cosinelr.py │ │ ├── resnet18_react_adam_1e-3_steplr.py │ │ ├── resnet18_react_adam_1e-4_cosinelr.py │ │ ├── resnet18_react_adam_1e-4_steplr.py │ │ ├── resnet18_react_sgd_1e-1_cosinelr.py │ │ ├── resnet18_react_sgd_1e-1_steplr.py │ │ ├── resnet18_react_sgd_1e-2_cosinelr.py │ │ ├── resnet18_react_sgd_1e-2_steplr.py │ │ ├── resnet18_recu_adam_1e-3_cosinelr.py │ │ ├── resnet18_recu_adam_1e-3_steplr.py │ │ ├── resnet18_recu_adam_1e-4_cosinelr.py │ │ ├── resnet18_recu_adam_1e-4_steplr.py │ │ ├── resnet18_recu_sgd_1e-1_cosinelr.py │ │ ├── resnet18_recu_sgd_1e-1_steplr.py │ │ ├── resnet18_recu_sgd_1e-2_cosinelr.py │ │ ├── resnet18_recu_sgd_1e-2_steplr.py │ │ ├── resnet18_xnor_adam_1e-3_cosinelr.py │ │ ├── resnet18_xnor_adam_1e-3_steplr.py │ │ ├── resnet18_xnor_adam_1e-4_cosinelr.py │ │ ├── resnet18_xnor_adam_1e-4_steplr.py │ │ ├── resnet18_xnor_sgd_1e-1_cosinelr.py │ │ ├── resnet18_xnor_sgd_1e-1_steplr.py │ │ ├── resnet18_xnor_sgd_1e-2_cosinelr.py │ │ ├── resnet18_xnor_sgd_1e-2_steplr.py │ │ ├── resnet18_xnorplusplus_adam_1e-3_cosinelr.py │ │ ├── resnet18_xnorplusplus_adam_1e-3_steplr.py │ │ ├── resnet18_xnorplusplus_adam_1e-4_cosinelr.py │ │ ├── resnet18_xnorplusplus_adam_1e-4_steplr.py │ │ ├── resnet18_xnorplusplus_sgd_1e-1_cosinelr.py │ │ ├── resnet18_xnorplusplus_sgd_1e-1_steplr.py │ │ ├── resnet18_xnorplusplus_sgd_1e-2_cosinelr.py │ │ └── resnet18_xnorplusplus_sgd_1e-2_steplr.py ├── requirements.txt └── tools │ ├── slurm_test.sh │ ├── slurm_train.sh │ ├── test.py │ └── train.py ├── Libraries ├── BiNLP │ ├── binlp │ │ ├── apis │ │ │ └── ___init__.py │ │ ├── core │ │ │ ├── __init__.py │ │ │ └── evaluation │ │ │ │ └── __init__.py │ │ ├── datasets │ │ │ ├── __init__.py │ │ │ ├── builder.py │ │ │ ├── glue.py │ │ │ ├── tokenization.py │ │ │ └── utils.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── bert.py │ │ │ ├── builder.py │ │ │ ├── configuration.py │ │ │ └── distill_classifier.py │ │ └── version.py │ └── setup.py ├── BiPointCloud │ ├── bipc │ │ ├── apis │ │ │ └── __init__.py │ │ ├── core │ │ │ ├── __init__.py │ │ │ └── evaluation │ │ │ │ └── __init__.py │ │ ├── datasets │ │ │ ├── __init__.py │ │ │ ├── builder.py │ │ │ └── modelnet.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── backbones │ │ │ │ ├── __init__.py │ │ │ │ └── pointnet.py │ │ │ └── builder.py │ │ └── version.py │ └── setup.py └── BiSpeech │ ├── bispeech │ ├── core │ │ ├── __init__.py │ │ └── evaluation │ │ │ └── __init__.py │ ├── datasets │ │ ├── __init__.py │ │ ├── builder.py │ │ ├── pipelines │ │ │ ├── AmplitudeToDB.py │ │ │ ├── ChangeAmplitude.py │ │ │ ├── ChangeSpeedAndPitchAudio.py │ │ │ ├── FixAudioLength.py │ │ │ ├── MelSpectrogram.py │ │ │ ├── TimeshiftAudio.py │ │ │ └── __init__.py │ │ └── speech_commands.py │ ├── models │ │ ├── __init__.py │ │ ├── backbones │ │ │ ├── __init__.py │ │ │ └── dfsmn.py │ │ └── builder.py │ └── version.py │ └── setup.py └── README.md /BiBench/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/.gitignore -------------------------------------------------------------------------------- /BiBench/bibench/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/__init__.py -------------------------------------------------------------------------------- /BiBench/bibench/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/apis/__init__.py -------------------------------------------------------------------------------- /BiBench/bibench/apis/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/apis/test.py -------------------------------------------------------------------------------- /BiBench/bibench/apis/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/apis/train.py -------------------------------------------------------------------------------- /BiBench/bibench/core/hook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/core/hook/__init__.py -------------------------------------------------------------------------------- /BiBench/bibench/core/hook/model_params_update_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/core/hook/model_params_update_hook.py -------------------------------------------------------------------------------- /BiBench/bibench/core/optimizer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/core/optimizer/__init__.py -------------------------------------------------------------------------------- /BiBench/bibench/core/optimizer/bert_adam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/core/optimizer/bert_adam.py -------------------------------------------------------------------------------- /BiBench/bibench/core/optimizer/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/core/optimizer/builder.py -------------------------------------------------------------------------------- /BiBench/bibench/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/datasets/__init__.py -------------------------------------------------------------------------------- /BiBench/bibench/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/datasets/builder.py -------------------------------------------------------------------------------- /BiBench/bibench/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/models/__init__.py -------------------------------------------------------------------------------- /BiBench/bibench/models/architectures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BiBench/bibench/models/architectures/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/models/architectures/builder.py -------------------------------------------------------------------------------- /BiBench/bibench/models/architectures/simple_architecture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/models/architectures/simple_architecture.py -------------------------------------------------------------------------------- /BiBench/bibench/models/architectures/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/models/architectures/utils.py -------------------------------------------------------------------------------- /BiBench/bibench/models/backbones/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BiBench/bibench/models/backbones/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/models/backbones/builder.py -------------------------------------------------------------------------------- /BiBench/bibench/models/backbones/reactnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/models/backbones/reactnet.py -------------------------------------------------------------------------------- /BiBench/bibench/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/models/backbones/resnet.py -------------------------------------------------------------------------------- /BiBench/bibench/models/backbones/resnet_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/models/backbones/resnet_cifar.py -------------------------------------------------------------------------------- /BiBench/bibench/models/backbones/ssd_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/models/backbones/ssd_vgg.py -------------------------------------------------------------------------------- /BiBench/bibench/models/backbones/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/models/backbones/vgg.py -------------------------------------------------------------------------------- /BiBench/bibench/models/backbones/vgg_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/models/backbones/vgg_cifar.py -------------------------------------------------------------------------------- /BiBench/bibench/models/layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /BiBench/bibench/models/layers/bireal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/models/layers/bireal.py -------------------------------------------------------------------------------- /BiBench/bibench/models/layers/bnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/models/layers/bnn.py -------------------------------------------------------------------------------- /BiBench/bibench/models/layers/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/models/layers/builder.py -------------------------------------------------------------------------------- /BiBench/bibench/models/layers/dorefa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/models/layers/dorefa.py -------------------------------------------------------------------------------- /BiBench/bibench/models/layers/fda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/models/layers/fda.py -------------------------------------------------------------------------------- /BiBench/bibench/models/layers/react.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/models/layers/react.py -------------------------------------------------------------------------------- /BiBench/bibench/models/layers/recu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/models/layers/recu.py -------------------------------------------------------------------------------- /BiBench/bibench/models/layers/xnor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/models/layers/xnor.py -------------------------------------------------------------------------------- /BiBench/bibench/models/layers/xnorplusplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/models/layers/xnorplusplus.py -------------------------------------------------------------------------------- /BiBench/bibench/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/utils/__init__.py -------------------------------------------------------------------------------- /BiBench/bibench/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/utils/collect_env.py -------------------------------------------------------------------------------- /BiBench/bibench/utils/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/utils/dist_utils.py -------------------------------------------------------------------------------- /BiBench/bibench/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/utils/logger.py -------------------------------------------------------------------------------- /BiBench/bibench/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/utils/misc.py -------------------------------------------------------------------------------- /BiBench/bibench/utils/path_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/utils/path_utils.py -------------------------------------------------------------------------------- /BiBench/bibench/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/bibench/version.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/datasets/cifar10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/datasets/cifar10.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/datasets/coco.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/datasets/glue_cola.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/datasets/glue_cola.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/datasets/glue_mnli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/datasets/glue_mnli.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/datasets/glue_mrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/datasets/glue_mrpc.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/datasets/imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/datasets/imagenet.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/datasets/modelnet40.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/datasets/modelnet40.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/datasets/shapenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/datasets/shapenet.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/datasets/speech_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/datasets/speech_commands.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/datasets/voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/datasets/voc0712.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/models/basebert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/models/basebert.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/models/bireal18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/models/bireal18.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/models/dfsmn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/models/dfsmn.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/models/pointnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/models/pointnet.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/models/reactnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/models/reactnet.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/models/resnet18.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/models/resnet18.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/models/resnet18_faster-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/models/resnet18_faster-rcnn.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/models/resnet20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/models/resnet20.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/models/resnet34.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/models/resnet34.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/models/vgg16_ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/models/vgg16_ssd300.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/schedules/adam_1e-3_cosinelr_100e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/schedules/adam_1e-3_cosinelr_100e.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/schedules/adam_1e-3_cosinelr_200e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/schedules/adam_1e-3_cosinelr_200e.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/schedules/adam_1e-3_cosinelr_400e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/schedules/adam_1e-3_cosinelr_400e.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/schedules/adam_1e-3_steplr_200e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/schedules/adam_1e-3_steplr_200e.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/schedules/adam_1e-4_cosinelr_200e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/schedules/adam_1e-4_cosinelr_200e.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/schedules/adam_1e-4_steplr_200e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/schedules/adam_1e-4_steplr_200e.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/schedules/glue_cola.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/schedules/glue_cola.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/schedules/glue_mnli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/schedules/glue_mnli.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/schedules/glue_mrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/schedules/glue_mrpc.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/schedules/sgd_1e-1_cosinelr_100e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/schedules/sgd_1e-1_cosinelr_100e.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/schedules/sgd_1e-1_cosinelr_200e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/schedules/sgd_1e-1_cosinelr_200e.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/schedules/sgd_1e-1_cosinelr_400e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/schedules/sgd_1e-1_cosinelr_400e.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/schedules/sgd_1e-1_steplr_200e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/schedules/sgd_1e-1_steplr_200e.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/schedules/sgd_1e-2_cosinelr_200e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/schedules/sgd_1e-2_cosinelr_200e.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/schedules/sgd_1e-2_steplr_200e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/schedules/sgd_1e-2_steplr_200e.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/schedules/sgd_1e-2_steplr_5e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/schedules/sgd_1e-2_steplr_5e.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/schedules/sgd_1e-3_cosinelr_300e_warmup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/schedules/sgd_1e-3_cosinelr_300e_warmup.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/schedules/sgd_2e-2_steplr_24e_warmup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/schedules/sgd_2e-2_steplr_24e_warmup.py -------------------------------------------------------------------------------- /BiBench/configs/_base_/schedules/sgd_5e-3_cosinelr_300e_warmup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/_base_/schedules/sgd_5e-3_cosinelr_300e_warmup.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/bireal18_bireal_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/bireal18_bireal_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/bireal18_bireal_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/bireal18_bireal_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/bireal18_bnn_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/bireal18_bnn_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/bireal18_bnn_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/bireal18_bnn_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/bireal18_dorefa_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/bireal18_dorefa_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/bireal18_dorefa_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/bireal18_dorefa_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/bireal18_fda_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/bireal18_fda_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/bireal18_fda_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/bireal18_fda_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/bireal18_fp32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/bireal18_fp32.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/bireal18_react_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/bireal18_react_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/bireal18_react_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/bireal18_react_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/bireal18_recu_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/bireal18_recu_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/bireal18_recu_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/bireal18_recu_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/bireal18_xnor_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/bireal18_xnor_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/bireal18_xnor_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/bireal18_xnor_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/bireal18_xnorplusplus_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/bireal18_xnorplusplus_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/bireal18_xnorplusplus_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/bireal18_xnorplusplus_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/reactnet_bireal_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/reactnet_bireal_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/reactnet_bnn_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/reactnet_bnn_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/reactnet_dorefa_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/reactnet_dorefa_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/reactnet_fda_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/reactnet_fda_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/reactnet_fp32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/reactnet_fp32.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/reactnet_react_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/reactnet_react_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/reactnet_recu_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/reactnet_recu_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/reactnet_xnor_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/reactnet_xnor_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/reactnet_xnorplusplus_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/reactnet_xnorplusplus_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet18_bireal_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet18_bireal_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet18_bireal_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet18_bireal_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet18_bnn_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet18_bnn_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet18_bnn_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet18_bnn_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet18_dorefa_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet18_dorefa_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet18_dorefa_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet18_dorefa_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet18_fda_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet18_fda_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet18_fda_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet18_fda_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet18_fp32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet18_fp32.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet18_react_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet18_react_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet18_react_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet18_react_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet18_recu_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet18_recu_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet18_recu_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet18_recu_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet18_xnor_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet18_xnor_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet18_xnor_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet18_xnor_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet18_xnorplusplus_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet18_xnorplusplus_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet18_xnorplusplus_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet18_xnorplusplus_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet20_bireal_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet20_bireal_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet20_bireal_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet20_bireal_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet20_bnn_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet20_bnn_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet20_bnn_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet20_bnn_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet20_dorefa_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet20_dorefa_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet20_dorefa_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet20_dorefa_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet20_fda_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet20_fda_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet20_fda_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet20_fda_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet20_fp32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet20_fp32.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet20_react_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet20_react_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet20_react_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet20_react_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet20_recu_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet20_recu_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet20_recu_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet20_recu_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet20_xnor_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet20_xnor_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet20_xnor_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet20_xnor_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet20_xnorplusplus_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet20_xnorplusplus_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet20_xnorplusplus_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet20_xnorplusplus_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet34_bireal_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet34_bireal_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet34_bireal_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet34_bireal_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet34_bnn_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet34_bnn_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet34_bnn_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet34_bnn_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet34_dorefa_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet34_dorefa_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet34_dorefa_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet34_dorefa_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet34_fda_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet34_fda_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet34_fda_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet34_fda_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet34_fp32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet34_fp32.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet34_react_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet34_react_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet34_react_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet34_react_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet34_recu_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet34_recu_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet34_recu_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet34_recu_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet34_xnor_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet34_xnor_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet34_xnor_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet34_xnor_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet34_xnorplusplus_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet34_xnorplusplus_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_cifar10/resnet34_xnorplusplus_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_cifar10/resnet34_xnorplusplus_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/acc_coco/resnet18_bireal_faster-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_coco/resnet18_bireal_faster-rcnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_coco/resnet18_bnn_faster-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_coco/resnet18_bnn_faster-rcnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_coco/resnet18_dorefa_faster-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_coco/resnet18_dorefa_faster-rcnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_coco/resnet18_fda_faster-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_coco/resnet18_fda_faster-rcnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_coco/resnet18_fp32_faster-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_coco/resnet18_fp32_faster-rcnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_coco/resnet18_react_faster-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_coco/resnet18_react_faster-rcnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_coco/resnet18_recu_faster-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_coco/resnet18_recu_faster-rcnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_coco/resnet18_xnor_faster-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_coco/resnet18_xnor_faster-rcnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_coco/resnet18_xnorplusplus_faster-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_coco/resnet18_xnorplusplus_faster-rcnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_bireal_cola.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_bireal_cola.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_bireal_mnli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_bireal_mnli.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_bireal_mrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_bireal_mrpc.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_bnn_cola.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_bnn_cola.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_bnn_mnli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_bnn_mnli.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_bnn_mrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_bnn_mrpc.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_dorefa_cola.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_dorefa_cola.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_dorefa_mnli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_dorefa_mnli.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_dorefa_mrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_dorefa_mrpc.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_fda_cola.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_fda_cola.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_fda_mnli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_fda_mnli.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_fda_mrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_fda_mrpc.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_react_cola.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_react_cola.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_react_mnli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_react_mnli.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_react_mrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_react_mrpc.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_recu_cola.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_recu_cola.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_recu_mnli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_recu_mnli.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_recu_mrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_recu_mrpc.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_xnor_cola.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_xnor_cola.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_xnor_mnli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_xnor_mnli.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_xnor_mrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_xnor_mrpc.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_xnorplusplus_cola.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_xnorplusplus_cola.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_xnorplusplus_mnli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_xnorplusplus_mnli.py -------------------------------------------------------------------------------- /BiBench/configs/acc_glue/basebert_xnorplusplus_mrpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_glue/basebert_xnorplusplus_mrpc.py -------------------------------------------------------------------------------- /BiBench/configs/acc_imagenet/resnet18_bireal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_imagenet/resnet18_bireal.py -------------------------------------------------------------------------------- /BiBench/configs/acc_imagenet/resnet18_bnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_imagenet/resnet18_bnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_imagenet/resnet18_dorefa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_imagenet/resnet18_dorefa.py -------------------------------------------------------------------------------- /BiBench/configs/acc_imagenet/resnet18_fda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_imagenet/resnet18_fda.py -------------------------------------------------------------------------------- /BiBench/configs/acc_imagenet/resnet18_fp32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_imagenet/resnet18_fp32.py -------------------------------------------------------------------------------- /BiBench/configs/acc_imagenet/resnet18_react.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_imagenet/resnet18_react.py -------------------------------------------------------------------------------- /BiBench/configs/acc_imagenet/resnet18_recu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_imagenet/resnet18_recu.py -------------------------------------------------------------------------------- /BiBench/configs/acc_imagenet/resnet18_xnor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_imagenet/resnet18_xnor.py -------------------------------------------------------------------------------- /BiBench/configs/acc_imagenet/resnet18_xnorplusplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_imagenet/resnet18_xnorplusplus.py -------------------------------------------------------------------------------- /BiBench/configs/acc_modelnet40/pointnet_bireal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_modelnet40/pointnet_bireal.py -------------------------------------------------------------------------------- /BiBench/configs/acc_modelnet40/pointnet_bnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_modelnet40/pointnet_bnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_modelnet40/pointnet_dorefa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_modelnet40/pointnet_dorefa.py -------------------------------------------------------------------------------- /BiBench/configs/acc_modelnet40/pointnet_fda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_modelnet40/pointnet_fda.py -------------------------------------------------------------------------------- /BiBench/configs/acc_modelnet40/pointnet_fp32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_modelnet40/pointnet_fp32.py -------------------------------------------------------------------------------- /BiBench/configs/acc_modelnet40/pointnet_react.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_modelnet40/pointnet_react.py -------------------------------------------------------------------------------- /BiBench/configs/acc_modelnet40/pointnet_recu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_modelnet40/pointnet_recu.py -------------------------------------------------------------------------------- /BiBench/configs/acc_modelnet40/pointnet_xnor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_modelnet40/pointnet_xnor.py -------------------------------------------------------------------------------- /BiBench/configs/acc_modelnet40/pointnet_xnorplusplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_modelnet40/pointnet_xnorplusplus.py -------------------------------------------------------------------------------- /BiBench/configs/acc_modelnet40/pointnetv_bireal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_modelnet40/pointnetv_bireal.py -------------------------------------------------------------------------------- /BiBench/configs/acc_modelnet40/pointnetv_bnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_modelnet40/pointnetv_bnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_modelnet40/pointnetv_dorefa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_modelnet40/pointnetv_dorefa.py -------------------------------------------------------------------------------- /BiBench/configs/acc_modelnet40/pointnetv_fda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_modelnet40/pointnetv_fda.py -------------------------------------------------------------------------------- /BiBench/configs/acc_modelnet40/pointnetv_fp32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_modelnet40/pointnetv_fp32.py -------------------------------------------------------------------------------- /BiBench/configs/acc_modelnet40/pointnetv_react.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_modelnet40/pointnetv_react.py -------------------------------------------------------------------------------- /BiBench/configs/acc_modelnet40/pointnetv_recu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_modelnet40/pointnetv_recu.py -------------------------------------------------------------------------------- /BiBench/configs/acc_modelnet40/pointnetv_xnor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_modelnet40/pointnetv_xnor.py -------------------------------------------------------------------------------- /BiBench/configs/acc_modelnet40/pointnetv_xnorplusplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_modelnet40/pointnetv_xnorplusplus.py -------------------------------------------------------------------------------- /BiBench/configs/acc_shapenet/pointnet_bireal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_shapenet/pointnet_bireal.py -------------------------------------------------------------------------------- /BiBench/configs/acc_shapenet/pointnet_bnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_shapenet/pointnet_bnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_shapenet/pointnet_dorefa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_shapenet/pointnet_dorefa.py -------------------------------------------------------------------------------- /BiBench/configs/acc_shapenet/pointnet_fda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_shapenet/pointnet_fda.py -------------------------------------------------------------------------------- /BiBench/configs/acc_shapenet/pointnet_fp32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_shapenet/pointnet_fp32.py -------------------------------------------------------------------------------- /BiBench/configs/acc_shapenet/pointnet_react.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_shapenet/pointnet_react.py -------------------------------------------------------------------------------- /BiBench/configs/acc_shapenet/pointnet_recu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_shapenet/pointnet_recu.py -------------------------------------------------------------------------------- /BiBench/configs/acc_shapenet/pointnet_xnor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_shapenet/pointnet_xnor.py -------------------------------------------------------------------------------- /BiBench/configs/acc_shapenet/pointnet_xnorplusplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_shapenet/pointnet_xnorplusplus.py -------------------------------------------------------------------------------- /BiBench/configs/acc_speech/dfsmn_bireal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_speech/dfsmn_bireal.py -------------------------------------------------------------------------------- /BiBench/configs/acc_speech/dfsmn_bnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_speech/dfsmn_bnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_speech/dfsmn_dorefa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_speech/dfsmn_dorefa.py -------------------------------------------------------------------------------- /BiBench/configs/acc_speech/dfsmn_fda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_speech/dfsmn_fda.py -------------------------------------------------------------------------------- /BiBench/configs/acc_speech/dfsmn_fp32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_speech/dfsmn_fp32.py -------------------------------------------------------------------------------- /BiBench/configs/acc_speech/dfsmn_react.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_speech/dfsmn_react.py -------------------------------------------------------------------------------- /BiBench/configs/acc_speech/dfsmn_recu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_speech/dfsmn_recu.py -------------------------------------------------------------------------------- /BiBench/configs/acc_speech/dfsmn_xnor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_speech/dfsmn_xnor.py -------------------------------------------------------------------------------- /BiBench/configs/acc_speech/dfsmn_xnorplusplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_speech/dfsmn_xnorplusplus.py -------------------------------------------------------------------------------- /BiBench/configs/acc_voc/resnet18_bireal_faster-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_voc/resnet18_bireal_faster-rcnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_voc/resnet18_bnn_faster-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_voc/resnet18_bnn_faster-rcnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_voc/resnet18_dorefa_faster-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_voc/resnet18_dorefa_faster-rcnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_voc/resnet18_fda_faster-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_voc/resnet18_fda_faster-rcnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_voc/resnet18_fp32_faster-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_voc/resnet18_fp32_faster-rcnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_voc/resnet18_react_faster-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_voc/resnet18_react_faster-rcnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_voc/resnet18_recu_faster-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_voc/resnet18_recu_faster-rcnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_voc/resnet18_xnor_faster-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_voc/resnet18_xnor_faster-rcnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_voc/resnet18_xnorplusplus_faster-rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_voc/resnet18_xnorplusplus_faster-rcnn.py -------------------------------------------------------------------------------- /BiBench/configs/acc_voc/vgg16_bireal_ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_voc/vgg16_bireal_ssd300.py -------------------------------------------------------------------------------- /BiBench/configs/acc_voc/vgg16_bnn_ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_voc/vgg16_bnn_ssd300.py -------------------------------------------------------------------------------- /BiBench/configs/acc_voc/vgg16_dorefa_ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_voc/vgg16_dorefa_ssd300.py -------------------------------------------------------------------------------- /BiBench/configs/acc_voc/vgg16_fda_ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_voc/vgg16_fda_ssd300.py -------------------------------------------------------------------------------- /BiBench/configs/acc_voc/vgg16_fp32_ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_voc/vgg16_fp32_ssd300.py -------------------------------------------------------------------------------- /BiBench/configs/acc_voc/vgg16_react_ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_voc/vgg16_react_ssd300.py -------------------------------------------------------------------------------- /BiBench/configs/acc_voc/vgg16_recu_ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_voc/vgg16_recu_ssd300.py -------------------------------------------------------------------------------- /BiBench/configs/acc_voc/vgg16_xnor_ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_voc/vgg16_xnor_ssd300.py -------------------------------------------------------------------------------- /BiBench/configs/acc_voc/vgg16_xnorplusplus_ssd300.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/acc_voc/vgg16_xnorplusplus_ssd300.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_bireal_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_bireal_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_bireal_adam_1e-3_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_bireal_adam_1e-3_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_bireal_adam_1e-4_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_bireal_adam_1e-4_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_bireal_adam_1e-4_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_bireal_adam_1e-4_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_bireal_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_bireal_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_bireal_sgd_1e-1_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_bireal_sgd_1e-1_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_bireal_sgd_1e-2_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_bireal_sgd_1e-2_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_bireal_sgd_1e-2_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_bireal_sgd_1e-2_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_bnn_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_bnn_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_bnn_adam_1e-3_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_bnn_adam_1e-3_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_bnn_adam_1e-4_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_bnn_adam_1e-4_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_bnn_adam_1e-4_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_bnn_adam_1e-4_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_bnn_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_bnn_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_bnn_sgd_1e-1_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_bnn_sgd_1e-1_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_bnn_sgd_1e-2_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_bnn_sgd_1e-2_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_bnn_sgd_1e-2_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_bnn_sgd_1e-2_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_dorefa_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_dorefa_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_dorefa_adam_1e-3_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_dorefa_adam_1e-3_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_dorefa_adam_1e-4_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_dorefa_adam_1e-4_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_dorefa_adam_1e-4_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_dorefa_adam_1e-4_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_dorefa_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_dorefa_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_dorefa_sgd_1e-1_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_dorefa_sgd_1e-1_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_dorefa_sgd_1e-2_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_dorefa_sgd_1e-2_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_dorefa_sgd_1e-2_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_dorefa_sgd_1e-2_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_fda_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_fda_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_fda_adam_1e-3_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_fda_adam_1e-3_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_fda_adam_1e-4_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_fda_adam_1e-4_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_fda_adam_1e-4_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_fda_adam_1e-4_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_fda_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_fda_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_fda_sgd_1e-1_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_fda_sgd_1e-1_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_fda_sgd_1e-2_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_fda_sgd_1e-2_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_fda_sgd_1e-2_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_fda_sgd_1e-2_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_fp32_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_fp32_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_fp32_adam_1e-3_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_fp32_adam_1e-3_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_fp32_adam_1e-4_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_fp32_adam_1e-4_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_fp32_adam_1e-4_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_fp32_adam_1e-4_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_fp32_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_fp32_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_fp32_sgd_1e-1_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_fp32_sgd_1e-1_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_fp32_sgd_1e-2_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_fp32_sgd_1e-2_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_fp32_sgd_1e-2_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_fp32_sgd_1e-2_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_react_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_react_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_react_adam_1e-3_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_react_adam_1e-3_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_react_adam_1e-4_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_react_adam_1e-4_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_react_adam_1e-4_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_react_adam_1e-4_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_react_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_react_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_react_sgd_1e-1_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_react_sgd_1e-1_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_react_sgd_1e-2_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_react_sgd_1e-2_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_react_sgd_1e-2_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_react_sgd_1e-2_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_recu_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_recu_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_recu_adam_1e-3_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_recu_adam_1e-3_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_recu_adam_1e-4_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_recu_adam_1e-4_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_recu_adam_1e-4_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_recu_adam_1e-4_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_recu_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_recu_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_recu_sgd_1e-1_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_recu_sgd_1e-1_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_recu_sgd_1e-2_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_recu_sgd_1e-2_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_recu_sgd_1e-2_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_recu_sgd_1e-2_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_xnor_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_xnor_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_xnor_adam_1e-3_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_xnor_adam_1e-3_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_xnor_adam_1e-4_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_xnor_adam_1e-4_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_xnor_adam_1e-4_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_xnor_adam_1e-4_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_xnor_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_xnor_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_xnor_sgd_1e-1_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_xnor_sgd_1e-1_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_xnor_sgd_1e-2_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_xnor_sgd_1e-2_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_xnor_sgd_1e-2_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_xnor_sgd_1e-2_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_xnorplusplus_adam_1e-3_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_xnorplusplus_adam_1e-3_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_xnorplusplus_adam_1e-3_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_xnorplusplus_adam_1e-3_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_xnorplusplus_adam_1e-4_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_xnorplusplus_adam_1e-4_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_xnorplusplus_adam_1e-4_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_xnorplusplus_adam_1e-4_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_xnorplusplus_sgd_1e-1_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_xnorplusplus_sgd_1e-1_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_xnorplusplus_sgd_1e-1_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_xnorplusplus_sgd_1e-1_steplr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_xnorplusplus_sgd_1e-2_cosinelr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_xnorplusplus_sgd_1e-2_cosinelr.py -------------------------------------------------------------------------------- /BiBench/configs/eff_train/resnet18_xnorplusplus_sgd_1e-2_steplr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/configs/eff_train/resnet18_xnorplusplus_sgd_1e-2_steplr.py -------------------------------------------------------------------------------- /BiBench/requirements.txt: -------------------------------------------------------------------------------- 1 | opencv-python 2 | scipy 3 | -------------------------------------------------------------------------------- /BiBench/tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/tools/slurm_test.sh -------------------------------------------------------------------------------- /BiBench/tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/tools/slurm_train.sh -------------------------------------------------------------------------------- /BiBench/tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/tools/test.py -------------------------------------------------------------------------------- /BiBench/tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/BiBench/tools/train.py -------------------------------------------------------------------------------- /Libraries/BiNLP/binlp/apis/___init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiNLP/binlp/apis/___init__.py -------------------------------------------------------------------------------- /Libraries/BiNLP/binlp/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Libraries/BiNLP/binlp/core/evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | from mmcls.core.evaluation import * -------------------------------------------------------------------------------- /Libraries/BiNLP/binlp/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiNLP/binlp/datasets/__init__.py -------------------------------------------------------------------------------- /Libraries/BiNLP/binlp/datasets/builder.py: -------------------------------------------------------------------------------- 1 | from mmcls.datasets.builder import * -------------------------------------------------------------------------------- /Libraries/BiNLP/binlp/datasets/glue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiNLP/binlp/datasets/glue.py -------------------------------------------------------------------------------- /Libraries/BiNLP/binlp/datasets/tokenization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiNLP/binlp/datasets/tokenization.py -------------------------------------------------------------------------------- /Libraries/BiNLP/binlp/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiNLP/binlp/datasets/utils.py -------------------------------------------------------------------------------- /Libraries/BiNLP/binlp/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiNLP/binlp/models/__init__.py -------------------------------------------------------------------------------- /Libraries/BiNLP/binlp/models/bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiNLP/binlp/models/bert.py -------------------------------------------------------------------------------- /Libraries/BiNLP/binlp/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiNLP/binlp/models/builder.py -------------------------------------------------------------------------------- /Libraries/BiNLP/binlp/models/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiNLP/binlp/models/configuration.py -------------------------------------------------------------------------------- /Libraries/BiNLP/binlp/models/distill_classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiNLP/binlp/models/distill_classifier.py -------------------------------------------------------------------------------- /Libraries/BiNLP/binlp/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiNLP/binlp/version.py -------------------------------------------------------------------------------- /Libraries/BiNLP/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiNLP/setup.py -------------------------------------------------------------------------------- /Libraries/BiPointCloud/bipc/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiPointCloud/bipc/apis/__init__.py -------------------------------------------------------------------------------- /Libraries/BiPointCloud/bipc/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Libraries/BiPointCloud/bipc/core/evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | from mmcls.core.evaluation import * -------------------------------------------------------------------------------- /Libraries/BiPointCloud/bipc/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiPointCloud/bipc/datasets/__init__.py -------------------------------------------------------------------------------- /Libraries/BiPointCloud/bipc/datasets/builder.py: -------------------------------------------------------------------------------- 1 | from mmcls.datasets.builder import * -------------------------------------------------------------------------------- /Libraries/BiPointCloud/bipc/datasets/modelnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiPointCloud/bipc/datasets/modelnet.py -------------------------------------------------------------------------------- /Libraries/BiPointCloud/bipc/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiPointCloud/bipc/models/__init__.py -------------------------------------------------------------------------------- /Libraries/BiPointCloud/bipc/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiPointCloud/bipc/models/backbones/__init__.py -------------------------------------------------------------------------------- /Libraries/BiPointCloud/bipc/models/backbones/pointnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiPointCloud/bipc/models/backbones/pointnet.py -------------------------------------------------------------------------------- /Libraries/BiPointCloud/bipc/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiPointCloud/bipc/models/builder.py -------------------------------------------------------------------------------- /Libraries/BiPointCloud/bipc/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiPointCloud/bipc/version.py -------------------------------------------------------------------------------- /Libraries/BiPointCloud/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiPointCloud/setup.py -------------------------------------------------------------------------------- /Libraries/BiSpeech/bispeech/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Libraries/BiSpeech/bispeech/core/evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | from mmcls.core.evaluation import * -------------------------------------------------------------------------------- /Libraries/BiSpeech/bispeech/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiSpeech/bispeech/datasets/__init__.py -------------------------------------------------------------------------------- /Libraries/BiSpeech/bispeech/datasets/builder.py: -------------------------------------------------------------------------------- 1 | from mmcls.datasets.builder import * -------------------------------------------------------------------------------- /Libraries/BiSpeech/bispeech/datasets/pipelines/AmplitudeToDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiSpeech/bispeech/datasets/pipelines/AmplitudeToDB.py -------------------------------------------------------------------------------- /Libraries/BiSpeech/bispeech/datasets/pipelines/ChangeAmplitude.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiSpeech/bispeech/datasets/pipelines/ChangeAmplitude.py -------------------------------------------------------------------------------- /Libraries/BiSpeech/bispeech/datasets/pipelines/ChangeSpeedAndPitchAudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiSpeech/bispeech/datasets/pipelines/ChangeSpeedAndPitchAudio.py -------------------------------------------------------------------------------- /Libraries/BiSpeech/bispeech/datasets/pipelines/FixAudioLength.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiSpeech/bispeech/datasets/pipelines/FixAudioLength.py -------------------------------------------------------------------------------- /Libraries/BiSpeech/bispeech/datasets/pipelines/MelSpectrogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiSpeech/bispeech/datasets/pipelines/MelSpectrogram.py -------------------------------------------------------------------------------- /Libraries/BiSpeech/bispeech/datasets/pipelines/TimeshiftAudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiSpeech/bispeech/datasets/pipelines/TimeshiftAudio.py -------------------------------------------------------------------------------- /Libraries/BiSpeech/bispeech/datasets/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiSpeech/bispeech/datasets/pipelines/__init__.py -------------------------------------------------------------------------------- /Libraries/BiSpeech/bispeech/datasets/speech_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiSpeech/bispeech/datasets/speech_commands.py -------------------------------------------------------------------------------- /Libraries/BiSpeech/bispeech/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiSpeech/bispeech/models/__init__.py -------------------------------------------------------------------------------- /Libraries/BiSpeech/bispeech/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiSpeech/bispeech/models/backbones/__init__.py -------------------------------------------------------------------------------- /Libraries/BiSpeech/bispeech/models/backbones/dfsmn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiSpeech/bispeech/models/backbones/dfsmn.py -------------------------------------------------------------------------------- /Libraries/BiSpeech/bispeech/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiSpeech/bispeech/models/builder.py -------------------------------------------------------------------------------- /Libraries/BiSpeech/bispeech/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiSpeech/bispeech/version.py -------------------------------------------------------------------------------- /Libraries/BiSpeech/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/Libraries/BiSpeech/setup.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/BiBench/HEAD/README.md --------------------------------------------------------------------------------