├── plench ├── __init__.py ├── collect_results.py ├── core │ ├── __init__.py │ ├── algorithms.py │ ├── hparams_registry.py │ ├── model_selection.py │ └── networks.py ├── data │ ├── __init__.py │ ├── cutout.py │ ├── datasets.py │ └── randaugment.py ├── lib │ ├── __init__.py │ ├── command_launchers.py │ ├── densenet.py │ ├── misc.py │ ├── query.py │ ├── reporting.py │ └── resnet.py ├── sweep.py └── train.py └── readme.md /plench/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plench/collect_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwangwitsel/PLENCH/HEAD/plench/collect_results.py -------------------------------------------------------------------------------- /plench/core/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plench/core/algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwangwitsel/PLENCH/HEAD/plench/core/algorithms.py -------------------------------------------------------------------------------- /plench/core/hparams_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwangwitsel/PLENCH/HEAD/plench/core/hparams_registry.py -------------------------------------------------------------------------------- /plench/core/model_selection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwangwitsel/PLENCH/HEAD/plench/core/model_selection.py -------------------------------------------------------------------------------- /plench/core/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwangwitsel/PLENCH/HEAD/plench/core/networks.py -------------------------------------------------------------------------------- /plench/data/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plench/data/cutout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwangwitsel/PLENCH/HEAD/plench/data/cutout.py -------------------------------------------------------------------------------- /plench/data/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwangwitsel/PLENCH/HEAD/plench/data/datasets.py -------------------------------------------------------------------------------- /plench/data/randaugment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwangwitsel/PLENCH/HEAD/plench/data/randaugment.py -------------------------------------------------------------------------------- /plench/lib/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /plench/lib/command_launchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwangwitsel/PLENCH/HEAD/plench/lib/command_launchers.py -------------------------------------------------------------------------------- /plench/lib/densenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwangwitsel/PLENCH/HEAD/plench/lib/densenet.py -------------------------------------------------------------------------------- /plench/lib/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwangwitsel/PLENCH/HEAD/plench/lib/misc.py -------------------------------------------------------------------------------- /plench/lib/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwangwitsel/PLENCH/HEAD/plench/lib/query.py -------------------------------------------------------------------------------- /plench/lib/reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwangwitsel/PLENCH/HEAD/plench/lib/reporting.py -------------------------------------------------------------------------------- /plench/lib/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwangwitsel/PLENCH/HEAD/plench/lib/resnet.py -------------------------------------------------------------------------------- /plench/sweep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwangwitsel/PLENCH/HEAD/plench/sweep.py -------------------------------------------------------------------------------- /plench/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwangwitsel/PLENCH/HEAD/plench/train.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwangwitsel/PLENCH/HEAD/readme.md --------------------------------------------------------------------------------