├── .gitignore ├── README.md ├── cifar2png ├── common ├── __init__.py ├── preprocess.py └── spinner.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ 3 | cifar2png.egg-info/ 4 | dist/ 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knjcode/cifar2png/HEAD/README.md -------------------------------------------------------------------------------- /cifar2png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knjcode/cifar2png/HEAD/cifar2png -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | name = "cifar2png" 2 | -------------------------------------------------------------------------------- /common/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knjcode/cifar2png/HEAD/common/preprocess.py -------------------------------------------------------------------------------- /common/spinner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knjcode/cifar2png/HEAD/common/spinner.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knjcode/cifar2png/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/knjcode/cifar2png/HEAD/setup.py --------------------------------------------------------------------------------