├── .gitignore ├── .pylintrc ├── .travis.yml ├── LICENSE ├── README.md ├── examples ├── cifar10.yaml └── train.py ├── setup.py ├── skeletor ├── __init__.py ├── error.py ├── launcher.py ├── proc │ ├── __init__.py │ └── track_analysis.py └── utils.py └── tests ├── lint.sh └── tester.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/skeletor/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/skeletor/HEAD/.pylintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/skeletor/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/skeletor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/skeletor/HEAD/README.md -------------------------------------------------------------------------------- /examples/cifar10.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/skeletor/HEAD/examples/cifar10.yaml -------------------------------------------------------------------------------- /examples/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/skeletor/HEAD/examples/train.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/skeletor/HEAD/setup.py -------------------------------------------------------------------------------- /skeletor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/skeletor/HEAD/skeletor/__init__.py -------------------------------------------------------------------------------- /skeletor/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/skeletor/HEAD/skeletor/error.py -------------------------------------------------------------------------------- /skeletor/launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/skeletor/HEAD/skeletor/launcher.py -------------------------------------------------------------------------------- /skeletor/proc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/skeletor/HEAD/skeletor/proc/__init__.py -------------------------------------------------------------------------------- /skeletor/proc/track_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/skeletor/HEAD/skeletor/proc/track_analysis.py -------------------------------------------------------------------------------- /skeletor/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/skeletor/HEAD/skeletor/utils.py -------------------------------------------------------------------------------- /tests/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/skeletor/HEAD/tests/lint.sh -------------------------------------------------------------------------------- /tests/tester.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noahgolmant/skeletor/HEAD/tests/tester.sh --------------------------------------------------------------------------------