gitextract_6lcfcbge/ ├── .gitignore ├── LICENSE ├── README.md ├── configs.py ├── inference.py ├── models/ │ ├── __init__.py │ ├── activations/ │ │ ├── __init__.py │ │ ├── activations.py │ │ ├── activations_autofn.py │ │ ├── activations_jit.py │ │ └── config.py │ ├── config.py │ ├── conv2d_layers.py │ ├── densenet.py │ ├── efficientnet_builder.py │ ├── gen_efficientnet.py │ ├── helpers.py │ ├── mobilenetv3.py │ ├── model_factory.py │ ├── resnet.py │ └── version.py ├── network.py ├── pycls/ │ ├── __init__.py │ ├── cfgs/ │ │ ├── RegNetY-1.6GF_dds_8gpu.yaml │ │ ├── RegNetY-600MF_dds_8gpu.yaml │ │ └── RegNetY-800MF_dds_8gpu.yaml │ ├── core/ │ │ ├── __init__.py │ │ ├── config.py │ │ ├── losses.py │ │ ├── model_builder.py │ │ ├── old_config.py │ │ └── optimizer.py │ ├── datasets/ │ │ ├── __init__.py │ │ ├── cifar10.py │ │ ├── imagenet.py │ │ ├── loader.py │ │ ├── paths.py │ │ └── transforms.py │ ├── models/ │ │ ├── __init__.py │ │ ├── anynet.py │ │ ├── effnet.py │ │ ├── regnet.py │ │ └── resnet.py │ └── utils/ │ ├── __init__.py │ ├── benchmark.py │ ├── checkpoint.py │ ├── distributed.py │ ├── error_handler.py │ ├── io.py │ ├── logging.py │ ├── lr_policy.py │ ├── meters.py │ ├── metrics.py │ ├── multiprocessing.py │ ├── net.py │ ├── plotting.py │ └── timer.py ├── simplejson/ │ ├── __init__.py │ ├── _speedups.c │ ├── compat.py │ ├── decoder.py │ ├── encoder.py │ ├── errors.py │ ├── ordered_dict.py │ ├── raw_json.py │ ├── scanner.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── test_bigint_as_string.py │ │ ├── test_bitsize_int_as_string.py │ │ ├── test_check_circular.py │ │ ├── test_decimal.py │ │ ├── test_decode.py │ │ ├── test_default.py │ │ ├── test_dump.py │ │ ├── test_encode_basestring_ascii.py │ │ ├── test_encode_for_html.py │ │ ├── test_errors.py │ │ ├── test_fail.py │ │ ├── test_float.py │ │ ├── test_for_json.py │ │ ├── test_indent.py │ │ ├── test_item_sort_key.py │ │ ├── test_iterable.py │ │ ├── test_namedtuple.py │ │ ├── test_pass1.py │ │ ├── test_pass2.py │ │ ├── test_pass3.py │ │ ├── test_raw_json.py │ │ ├── test_recursion.py │ │ ├── test_scanstring.py │ │ ├── test_separators.py │ │ ├── test_speedups.py │ │ ├── test_str_subclass.py │ │ ├── test_subclass.py │ │ ├── test_tool.py │ │ ├── test_tuple.py │ │ └── test_unicode.py │ └── tool.py ├── train.py ├── utils.py └── yacs/ ├── __init__.py ├── config.py └── tests.py