├── LICENSE.md ├── README.md ├── enlighten_inference ├── __init__.py └── enlighten.onnx ├── requirements.txt ├── setup.py └── tests ├── chicken.jpeg └── test_smoke.py /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsenyinfo/EnlightenGAN-inference/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsenyinfo/EnlightenGAN-inference/HEAD/README.md -------------------------------------------------------------------------------- /enlighten_inference/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsenyinfo/EnlightenGAN-inference/HEAD/enlighten_inference/__init__.py -------------------------------------------------------------------------------- /enlighten_inference/enlighten.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsenyinfo/EnlightenGAN-inference/HEAD/enlighten_inference/enlighten.onnx -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | onnxruntime -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsenyinfo/EnlightenGAN-inference/HEAD/setup.py -------------------------------------------------------------------------------- /tests/chicken.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsenyinfo/EnlightenGAN-inference/HEAD/tests/chicken.jpeg -------------------------------------------------------------------------------- /tests/test_smoke.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsenyinfo/EnlightenGAN-inference/HEAD/tests/test_smoke.py --------------------------------------------------------------------------------